14 lines
718 B
HTML
Raw Normal View History

2016-04-05 16:48:53 +02:00
{% if settings.licence is not defined %}
2016-11-04 12:55:02 +01:00
{% set licence_url = 'https://creativecommons.org/licenses/by-sa/3.0/' %}
{% set licence_name = 'CC-BY-SA' %}
2016-04-05 16:48:53 +02:00
{% else %}
2016-11-04 12:55:02 +01:00
{% set licence_url = settings.licence.url %}
{% set licence_name = settings.licence.name %}
2016-04-05 16:48:53 +02:00
{% endif %}
2017-07-03 13:37:38 +02:00
{% if settings.custom_js %}
<script type="text/javascript" src="../static/js/custom.js" charset="utf-8"></script>
{% endif %}
2016-04-05 16:48:53 +02:00
<footer>
2016-11-04 12:55:02 +01:00
<p>Generated using <a href="https://github.com/psycojoker/prosopopee">Prosopopée</a> · content under <a href="{{ licence_url }}">{{ licence_name }}</a> · atom logo by <a href="https://thenounproject.com/jjjon/">Jonathan Li</a> under <a href="https://creativecommons.org/licenses/by/3.0/">CC-BY</a></p>
2016-04-05 16:48:53 +02:00
</footer>