Added EXTRA_FOOTER_TEXT to flex.html. Use to add other attributions.

This commit is contained in:
Dan Watling 2020-02-02 14:10:59 -06:00
parent 37f8420cde
commit a363081661

View file

@ -1,3 +1,7 @@
<p>{{ _('Built with %(pelican_url)s using %(flex_url)s theme', <p>{{ _('Built with %(pelican_url)s using %(flex_url)s theme',
pelican_url='<a href="http://getpelican.com" target="_blank">Pelican</a>', pelican_url='<a href="http://getpelican.com" target="_blank">Pelican</a>',
flex_url='<a href="http://bit.ly/flex-pelican" target="_blank">Flex</a>'|safe) }}</p> flex_url='<a href="http://bit.ly/flex-pelican" target="_blank">Flex</a>'|safe) }}
{% if EXTRA_FOOTER_TEXT %}
&centerdot; {{ _(EXTRA_FOOTER_TEXT) }}
{% endif %}
</p>