{# Items to include at the bottom of a single page #}
{# PDF links #}
{% if PDF %}
{% endif %}
{# Copyright notice and link #}
{% if COPYRIGHTS and (COPYRIGHT_PAGE or page.copyright) %}
{% set copyright = page.copyright|default(DEFAULT_COPYRIGHT) %}
Page content licensed under:
{# Output creative commons icons instead of text #}
{% if 'cc' in copyright %}
{% if 'nc' in copyright %}
{% endif %}
{% if 'sa' in copyright %}
{% elif 'nd' in copyright %}
{% endif %}
{% else %}
{{ COPYRIGHTS[copyright][0] }}
{% endif %}
{% endif %}
{# Comments #}
{% if ( page.comments == True or ( page.comments is not defined and COMMENTS_PAGE == True ) ) and DISQUS_SN %}
{% include '_disqus.html' %}
{% endif %}