391b9e3e76
Former-commit-id: 18652fbea6ffa1879194c376f70307c1b09528f4 [formerly 28608f5f7650ae86cc13a2ea60b9ec2023833a45] Former-commit-id: 113e10e57eb00b1ba268a560e0506042527ccd8d
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 %}
|