styleguide/templates/page.html
2019-07-09 15:25:09 +02:00

12 lines
308 B
HTML

{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
<main role="main" class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content" data-spy="scroll" data-target="#components-nav" data-offset="0">
<h1>{{ this.title }}</h1>
{{ this.body }}
</main>
{% endblock %}