forked from mirrors/bookwyrm
1d90ca6fa6
Pulls footer and scripts after it into a separate component template. This allows ostatus/template to use the footer without having to use layout without repeating the same code.
49 lines
1.8 KiB
HTML
49 lines
1.8 KiB
HTML
{% load layout %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="columns">
|
|
<div class="column is-one-fifth">
|
|
<p>
|
|
<a href="{% url 'about' %}">{% blocktrans with site_name=site.name %}About {{ site_name }}{% endblocktrans %}</a>
|
|
</p>
|
|
{% if site.admin_email %}
|
|
<p>
|
|
<a href="mailto:{{ site.admin_email }}">{% trans "Contact site admin" %}</a>
|
|
</p>
|
|
{% endif %}
|
|
<p>
|
|
<a href="https://docs.joinbookwyrm.com/">{% trans "Documentation" %}</a>
|
|
</p>
|
|
</div>
|
|
<div class="column content is-two-fifth">
|
|
{% if site.support_link %}
|
|
<p>
|
|
<span class="icon icon-heart"></span>
|
|
{% blocktrans with site_name=site.name support_link=site.support_link support_title=site.support_title %}Support {{ site_name }} on <a href="{{ support_link }}" target="_blank">{{ support_title }}</a>{% endblocktrans %}
|
|
</p>
|
|
{% endif %}
|
|
<p>
|
|
{% blocktrans %}BookWyrm's source code is freely available. You can contribute or report issues on <a href="https://github.com/mouse-reeve/bookwyrm">GitHub</a>.{% endblocktrans %}
|
|
</p>
|
|
</div>
|
|
{% if site.footer_item %}
|
|
<div class="column">
|
|
<p>{{ site.footer_item|safe }}</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script>
|
|
var csrf_token = '{{ csrf_token }}';
|
|
</script>
|
|
|
|
<script src="{% static "js/bookwyrm.js" %}?v={{ js_cache }}"></script>
|
|
<script src="{% static "js/localstorage.js" %}?v={{ js_cache }}"></script>
|
|
<script src="{% static "js/status_cache.js" %}?v={{ js_cache }}"></script>
|
|
|
|
{% block scripts %}{% endblock %}
|