Bradley Sepos 5a17c7d1b1 template: Remove meta and title partials.
Meta and title can only be placed inside head, so they are not reusable outside the base template.
2016-09-07 05:54:32 -04:00

13 lines
395 B
HTML

<!DOCTYPE html>
<html lang="{{ document.language-code }}">
<head>
<meta charset="{{ document.text-encoding }}" />
<meta name="author" content="{{ document.authors }}" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ document.project }} Documentation &mdash; {{ document.title }}</title>
</head>
<body>
{{ template.document }}
</body>
</html>