16 lines
377 B
HTML
16 lines
377 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
{% block body %}
|
|
<div id="main" class="wrapper style1">
|
|
<div class="container">
|
|
<header class="major">
|
|
<h2>{{ this.title }}</h2>
|
|
<p>{{ this.slogan }}</p>
|
|
</header>
|
|
<!-- Content -->
|
|
<section id="content">
|
|
{{ this.content }}
|
|
</section>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|