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