beeware.github.io/templates/community.html
2024-05-22 16:43:53 -04:00

17 lines
458 B
HTML

{% extends "page.html" %}
{% from "macros/breadcrumbs.html" import breadcrumbs %}
{% block title %}{{ this.title }}{% endblock %}
{% block gutter %}
<div class="col-md-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 %}