camp/content/templates/latest_content.html
2017-12-23 11:22:39 +00:00

19 lines
621 B
HTML

<div class="large-4 medium-4 columns">
{% include "related.html" with related=content.children.all %}
{% if latest_content_list %}
<h4 class="sidebar-h4">{{section}}</h4>
<div class="row">
{% for content in latest_content_list %}
{% include "preview.html" with content=content %}
{% endfor %}
{% with section|lower|add:'_list' as section_list %}
{% if has_more_content %}
<a href="{% url section_list %}">more</a>
{% endif %}
{% endwith %}
</div>
{% else %}
{% if 0 %}<p>No content.</p>{% endif %}
{% endif %}
</div>