mirror of
https://github.com/seigler/dashdev-website
synced 2025-07-27 06:46:09 +00:00
33 lines
327 B
Handlebars
33 lines
327 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{> meta }}
|
|
</head>
|
|
<body>
|
|
|
|
{{> header }}
|
|
|
|
<main{{#if navsub}} class="subpages"{{/if}}>
|
|
|
|
<div class="content">
|
|
|
|
<article>
|
|
|
|
{{#if title}}
|
|
<h1>{{ title }}</h1>
|
|
{{/if}}
|
|
|
|
{{{ contents }}}
|
|
|
|
</article>
|
|
|
|
{{> navsub }}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{{> footer template='page' }}
|
|
|
|
</body>
|
|
</html>
|