1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/templates/pages/section_index_page.html

39 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% load wagtailcore_tags wagtailimages_tags %}
{% block body_class %}template-indexpage{% endblock %}
{% block content %}
{% include 'common/header.html' %}
{% if page.intro %}
<section>
<div class="container">
{{ page.intro|richtext }}
</div>
</section>
{% endif %}
{% if not page.hide_list %}
<section>
<div class="container">
<div class="row no-gutter">
{% for child in page.get_children.specific %}
<div class="media category">
<div class="media-left">
<a href="{{ child.url }}">
{% image child.image max-200x200 %}
</a>
</div>
<div class="media-body">
<a href="{{ child.url }}">
<h4 class="media-heading">{{ child.title }}</h4>
</a>
<p>{{ child.get_meta_description }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
{% endif %}
{% endblock %}