2017-08-03 17:44:00 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
2017-12-22 20:08:54 +00:00
|
|
|
{% include "edit.html" with content=texts %}
|
2017-12-23 11:06:13 +00:00
|
|
|
<div class="large-8 medium-8 columns special-column">
|
|
|
|
{% if texts.image %}
|
|
|
|
<img src="{{ texts.image_url }}">
|
2017-12-18 12:54:04 +00:00
|
|
|
{% endif %}
|
2017-12-23 11:06:13 +00:00
|
|
|
<div class="index-text">
|
|
|
|
<h4><a href="{{ texts.get_absolute_url }}/" class="big-title">{{texts.title}} </a></h4>
|
|
|
|
<p> {{texts.formatted_header|safe}} </p>
|
|
|
|
<p> {{texts.formatted_body|safe}} </p>
|
|
|
|
{% include "opt.html" with content=texts %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% include "latest_content.html" with content=texts %}
|
2017-12-18 12:54:04 +00:00
|
|
|
{% endblock %}
|