17 lines
460 B
HTML
17 lines
460 B
HTML
{% extends "page.html" %}
|
|
{% from "macros/breadcrumbs.html" import breadcrumbs %}
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
{% block gutter %}
|
|
|
|
<div class="col-sm-4">
|
|
<div class="gutter">
|
|
{{ this.gutter }}
|
|
{% for child in this.children %}
|
|
{% if child.hide_from_index %}
|
|
<h3><a href="{{ child|url(alt=this.alt) }}">{{ child.title }}</a></h3>
|
|
<p>{{ child.summary }}</p>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% endblock %}
|