treehouse/template/components/_doc.hbs

18 lines
454 B
Handlebars
Raw Normal View History

<main class="doc">
<div class="vertical-center">
<article class="doc-text">
{{#if (ne page.tree_path 'index')}}
<header>
<h1 class="page-title"><a href="{{ config.site }}/{{ page.tree_path }}">{{ page.title }}</a></h1>
</header>
{{/if}}
{{{~ page.doc }}}
</article>
{{> components/_footer.hbs }}
</div>
{{> components/_feed.hbs }}
</main>