mirror of
https://github.com/arsenetar/pelican-red.git
synced 2024-10-31 20:35:57 +00:00
Andrew Senetar
0d53dc55d4
The templates now include microformatting from schema.org. The title and content_title blocks are no longer in most templates. This updates the progess on issue #1
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 %}
|