template: Move styles and scripts inside article tag.

Encapsulating more information within the article tag for embedded output.
This commit is contained in:
Bradley Sepos 2016-09-07 05:49:01 -04:00
parent f4c5717a5e
commit f73f401d99
2 changed files with 2 additions and 2 deletions

View File

@ -4,10 +4,8 @@
{{ template.meta }}
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ template.title }}
{{ template.styles }}
</head>
<body>
{{ template.document }}
{{ template.scripts }}
</body>
</html>

View File

@ -1,6 +1,8 @@
<article class="docs {{ document.type }}" lang="{{ document.language-code }}" charset="{{ document.text-encoding }}">
{{ template.styles }}
{{ template.header }}
{{ template.notice }}
{{ document.content }}
{{ template.footer }}
{{ template.scripts }}
</article>