Nick Colley

Results 220 comments of Nick Colley

@terrysimpson99 I'll look into that thanks for letting us know.

@andysellick I'm going to move this to the GOV.UK Frontend repository

@a184studio thanks for sharing. Dave has raised an issue for this here: https://github.com/alphagov/govuk-frontend/issues/1352 Your hack will work fine for a prototype but if you are considering that for production I...

Using capturing like that is the safest way to pass HTML as it means you can avoid some cross site scripting vulnerabilities, I think it'd be good to have a...

It would be good for you to capture some of your thoughts here please: https://github.com/alphagov/govuk-frontend/issues/941 !

Related > Many websites have an accessibility feature called skip links that help some users navigate the site. However, there’s a problem with basically all skip links on mobile devices,...

@terrysimpson99 since the back link is not considered 'main' content but instead a form of navigation we intentionally skip past it with the skip link.

For GOV.UK Publishing, the stack that serves www.GOV.UK, they have a [hardcoded 500 page in their CDN configuration](https://github.com/alphagov/govuk-cdn-config/blob/3f7acba4b86dd1fcd34e1dcd276f8f08f53f50dd/spec/test-outputs/mirror-production.out.vcl#L598-L614). This is because if the application fails resulting in a 500 error,...

Hey @edwardhorsford, I've recorded the reasoning why this decision was made here: https://github.com/alphagov/govuk-frontend/pull/1321#issuecomment-549364442

I guess one pseudo code could be: ```njk {% call fieldset() %} {{ label() }} {{ hint() }} {{ input() }} {% endcall %} ``` Of course this would depend...