Bradley Sepos cc0e6b0e75 build: Refactor document generation to be faster and support partials.
Article header and footer are now partials, making them easy to exclude from license files.
2016-03-25 21:17:45 -04:00

20 lines
626 B
HTML

<!DOCTYPE html>
<html lang="{{ meta.language-code }}">
<head>
<meta charset="{{ meta.text-encoding }}" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="{{ meta.authors }}" />
<!--<meta name="description" content="" />-->
<!--<meta name="keywords" content="" />-->
<title>{{ meta.project }} Documentation - {{ meta.title }}</title>
<link rel="stylesheet" type="text/css" href="{{ base.relpath }}style/style.css" />
</head>
<body>
<article class="docs">
{{ template.header }}
{{ document.content }}
{{ template.footer }}
</article>
</body>
</html>