2013-05-27 22:15:01 -04:00
|
|
|
{% extends 'base.html' %}
|
2013-07-30 14:58:58 -04:00
|
|
|
{% block content_image %}
|
|
|
|
{% if page.image %}
|
|
|
|
<a class="th" href="{{ SITEURL }}/static/{{ article.image }}">
|
|
|
|
<img src="{{ SITEURL }}/static/{{ article.image }}" itemprop="image"/>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2013-05-27 22:15:01 -04:00
|
|
|
{% block content %}
|
2013-07-30 14:58:58 -04:00
|
|
|
<article itemprop="text">
|
2013-07-14 00:58:23 -04:00
|
|
|
{{ page.content }}
|
2013-07-29 16:09:35 -04:00
|
|
|
</article>
|
|
|
|
<footer class="page_footer">
|
2013-07-14 00:58:23 -04:00
|
|
|
{% include '_page_footer.html' %}
|
|
|
|
</footer>
|
|
|
|
{% endblock %}
|