2013-05-28 02:15:01 +00:00
|
|
|
{% extends 'base.html' %}
|
2013-07-30 18:58:58 +00: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-28 02:15:01 +00:00
|
|
|
{% block content %}
|
2013-07-30 18:58:58 +00:00
|
|
|
<article itemprop="text">
|
2013-07-14 04:58:23 +00:00
|
|
|
{{ page.content }}
|
2013-07-29 20:09:35 +00:00
|
|
|
</article>
|
|
|
|
<footer class="page_footer">
|
2013-07-14 04:58:23 +00:00
|
|
|
{% include '_page_footer.html' %}
|
|
|
|
</footer>
|
|
|
|
{% endblock %}
|