{% extends "base.html" %}
{% load static %}
{% block content %}
<div id="main">
<div class="container">
{% include "common/content.html" %}
<hr />
{% for child in page.get_children.specific %}
<div class="media list-page-item mb-3">
<div class="d-none d-md-block align-self-center img-wrapper mr-3">
<a href="{{ child.url }}">
<div class="image" data-image=''></div>
</a>
</div>
<div class="media-body">
<h5 class="my-0">{{ child.title }}</h5>
<small>{% include "common/content_details.html" with page=child %}</small>
<p>{{ child.get_short_body }}</p>
{% endfor %}
{% endblock %}