bf8f6317fc
Former-commit-id: ea2b44b8b3267f7d8b6de7c4faa93e0c68f4db1b [formerly ba1f20b9a5936a4914b1a399bbd957836ad018ab] Former-commit-id: 56619a0c16627d862166c040ce6b7aeb542e29ae
21 lines
690 B
HTML
21 lines
690 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
{% block body %}
|
|
<section class="wrapper alt spotlight style2">
|
|
<div class="inner">
|
|
<div class="content">
|
|
<h2 class="major">{{ this.title }}</h2>
|
|
{{ this.spruch }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Content -->
|
|
<div class="wrapper">
|
|
<div class="inner">
|
|
<h3 class="major">{{ this.subtitle }}</h3>
|
|
{{ this.body }}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|