You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
406 B
HTML
17 lines
406 B
HTML
{% extends 'base.html' %}
|
|
{% 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 %}
|
|
{% block content %}
|
|
<article itemprop="text">
|
|
{{ page.content }}
|
|
</article>
|
|
<footer class="page_footer">
|
|
{% include '_page_footer.html' %}
|
|
</footer>
|
|
{% endblock %}
|