1
0
mirror of https://github.com/ipdb/website.git synced 2024-09-23 17:48:51 +02:00
website/_src/_layouts/page.html

21 lines
466 B
HTML
Raw Normal View History

---
layout: base
---
<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>
</header>
<main role="main" class="section content content--page {% if page.path contains '.md' %}content--page--markdown{% endif %}">
<div class="row">
{{ content }}
</div>
</main>