<div class="row">
{% for children in childrens %}
<div class="col-sm-9 col-sm-push-3 col-lg-8 col-lg-push-2">
- <a href="{{ children.get_absolute_url }}" title="{{ children.title }}">{{ children.title }}</a>
+ {% with children as object %}
+ {% include "pages/includes/page_card.html" %}
+ {% endwith %}
</div>
{% endfor %}
</div>
{% extends "pages/basicpage.html" %}
-{% load i18n mezzanine_tags keyword_tags featured_tags pages_tags %}
+{% load i18n mezzanine_tags keyword_tags featured_tags pages_tags organization_tags %}
{% block meta_title %}{{ page.meta_title }}{% endblock %}
<div class="row">
{% for children in childrens %}
<div class="col-sm-9 col-sm-push-3 col-lg-8 col-lg-push-2">
- <a href="{{ children.get_absolute_url }}" title="{{ children.title }}">{{ children.title }}</a>
+ {% with children as object %}
+ {% include "pages/includes/page_card.html" %}
+ {% endwith %}
</div>
{% endfor %}
</div>
--- /dev/null
+<a href="{{ object.get_absolute_url }}" title="{{ object.title }}">
+ {{ object.title }}
+ {{ object.basicpage.sub_title }}
+</a>
{% extends "pages/basicpage.html" %}
-{% load i18n mezzanine_tags keyword_tags featured_tags pages_tags %}
+{% load i18n mezzanine_tags keyword_tags featured_tags pages_tags organization_tags %}
{% block meta_title %}{{ page.meta_title }}{% endblock %}
<div class="row">
{% for children in childrens %}
<div class="col-sm-9 col-sm-push-3 col-lg-8 col-lg-push-2">
- <a href="{{ children.get_absolute_url }}" title="{{ children.title }}">{{ children.title }}</a>
+ {% with children as object %}
+ {% include "pages/includes/page_card.html" %}
+ {% endwith %}
</div>
{% endfor %}
</div>