23 lines
397 B
HTML
23 lines
397 B
HTML
{% include header.html %}
|
|
|
|
</div>
|
|
|
|
<!-- Main -->
|
|
<div class="wrapper">
|
|
<div class="container" id="main">
|
|
|
|
<!-- Content -->
|
|
<article id="content">
|
|
<header>
|
|
<h2>{{ page.title }}</h2>
|
|
{% if page.subtitle %}<p>{{ page.subtitle }}</p>{% endif %}
|
|
</header>
|
|
{{ content }}
|
|
|
|
</article>
|
|
</div>
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
|