mirror of
https://github.com/arsenetar/pelican-red.git
synced 2026-01-23 15:11:38 +00:00
Move utility templates to prefix '_', add footer utility templates.
Utility templates moved to have '_' prefix similar to how sass files are. Aditional templates for article and page footer contents now used to load comments etc.
This commit is contained in:
14
templates/_article_footer.html
Normal file
14
templates/_article_footer.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{# Items to include at the bottom of a single article #}
|
||||
{# PDF links #}
|
||||
{% if PDF_PROCESSOR %}
|
||||
<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">PDF</a>
|
||||
{% endif %}
|
||||
{# Copyright notice and link #}
|
||||
{% if COPYRIGHTS and (COPYRIGHT_ARTICLE or article.copyright) %}
|
||||
<a href="{{ COPYRIGHTS[article.copyright|default(DEFAULT_COPYRIGHT)][1] }}">{{ COPYRIGHTS[article.copyright|default(DEFAULT_COPYRIGHT)][0] }}</a>
|
||||
{% endif %}
|
||||
{# Comments #}
|
||||
{% if ( article.comments == True or ( article.comments is not defined and COMMENTS_ARTICLE == True ) ) and DISQUS_SN %}
|
||||
{% include '_disqus.html' %}
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user