camp/content/templates/projects.html

20 lines
785 B
HTML
Raw Normal View History

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=projects %}
2017-12-23 11:06:13 +00:00
<div class="large-8 medium-8 columns special-column">
{% if projects.image %}
<img src="{{ projects.image_url }}">
2017-12-18 14:54:39 +00:00
{% endif %}
2017-12-23 11:06:13 +00:00
<div class="index-text">
<h4><a href="{{ projects.get_absolute_url }}/" class="big-title">{{projects.title}} </a></h4>
<p> {{projects.formatted_header|safe}} </p>
<p> {{projects.formatted_body|safe}} </p>
{% include "opt.html" with content=projects %}
{% include "links.html" with content=projects %}
{% include "gallery.html" with gallery=gallery %}
2017-12-18 14:54:39 +00:00
</div>
</div>
2017-12-23 11:06:13 +00:00
{% include "latest_content.html" with content=texts %}
2017-12-18 12:54:04 +00:00
{% endblock %}