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