website/_src/_includes/header.html

15 lines
387 B
HTML
Raw Normal View History

2017-08-24 13:47:28 +02:00
{% include menu-main.html %}
<header class="header header--page">
<div class="row">
<h1 class="header__title">{{ page.title }}</h1>
{% if page.subtitle %}
<h2 class="header__subtitle">{{ page.subtitle }}</h2>
{% endif %}
</div>
2017-08-29 13:51:54 +02:00
{% if page.path contains 'foundation' %}
{% include menu-foundation.html %}
{% endif%}
2017-08-24 13:47:28 +02:00
</header>