treehouse/template/components/_header.hbs
liquidex 523a364fa9 switch the layout to a wider one that leans slightly to the left of the page
this is to make space on the right for a nice background in the future
2024-10-30 23:02:47 +01:00

17 lines
483 B
Handlebars

<section class="page-header">
{{#if page.breadcrumbs}}
<ol class="breadcrumbs">
<li class="root-breadcrumb">
<a href="{{ config.site }}/">
{{{ include_static 'svg/object/logo.svg' }}}
</li>
</a>
{{{ page.breadcrumbs }}}
</ol>
{{/if}}
{{#if (ne page.title page.tree_path)}}
<h1 class="page-title"><a href="{{ config.site }}/{{ page.tree_path }}">{{ page.title }}</a></h1>
{{/if}}
</section>