18F / guides-style

DEPRECATED: 18F Guides Template style elements, derived from CFPB/DOCter
https://github.com/18F/uswds-jekyll
Other
11 stars 8 forks source link

Header/footer HTML fixes #92

Closed hbillings closed 7 years ago

hbillings commented 7 years ago

Two HTML fixes, as noted by #91:

The complaint about an open script tag is invalid, as there is a closing script tag after the GA JS block. If there are thoughts about how to get the linter to not throw an error, I'd love to hear 'em!

afeld commented 7 years ago

The complaint about an open script tag is invalid

Turns out <html> can only contain

One <head> element, followed by one <body> element.

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html

In other words, the <script>s just needed to be moved into the <body>. All good now. Thanks for doing these fixes so quickly!