|
@@ -11,32 +11,48 @@
|
|
|
<script defer src="https://uma.cog.gs/script.js" data-website-id="744740f8-2ff1-4a59-9e0f-7740fc8ca3c4"></script>
|
|
<script defer src="https://uma.cog.gs/script.js" data-website-id="744740f8-2ff1-4a59-9e0f-7740fc8ca3c4"></script>
|
|
|
{% endblock %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
+{#
|
|
|
|
|
+ The theme's footer block wraps the whole <footer> element, so calling
|
|
|
|
|
+ super() first would leave this content outside it. Rebuild the footer
|
|
|
|
|
+ instead: our content sits above the theme's meta bar, inside the footer.
|
|
|
|
|
+#}
|
|
|
{% block footer %}
|
|
{% block footer %}
|
|
|
- {{ super() }}
|
|
|
|
|
- <div class="awesome-django-footer">
|
|
|
|
|
- <div class="awesome-django-newsletter">
|
|
|
|
|
- <iframe
|
|
|
|
|
- src="https://django-news.com?as_embed=true"
|
|
|
|
|
- scrolling="no"
|
|
|
|
|
- loading="lazy"
|
|
|
|
|
- title="Subscribe to Django News"></iframe>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <footer class="md-footer">
|
|
|
|
|
+ <div class="awesome-django-footer md-grid">
|
|
|
|
|
+ <div class="awesome-django-newsletter">
|
|
|
|
|
+ <iframe
|
|
|
|
|
+ src="https://django-news.com?as_embed=true"
|
|
|
|
|
+ scrolling="no"
|
|
|
|
|
+ loading="lazy"
|
|
|
|
|
+ title="Subscribe to Django News"></iframe>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
- <div class="awesome-django-webring">
|
|
|
|
|
- <webring-css site="https://awesomedjango.org"></webring-css>
|
|
|
|
|
- <script src="https://djangowebring.com/static/webring.js"></script>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="awesome-django-webring">
|
|
|
|
|
+ <webring-css site="https://awesomedjango.org"></webring-css>
|
|
|
|
|
+ <script src="https://djangowebring.com/static/webring.js"></script>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
- <p>
|
|
|
|
|
- Please consider supporting Django by making a donation to the
|
|
|
|
|
- <a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
|
|
|
|
|
- sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
|
|
|
|
|
- or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.
|
|
|
|
|
- </p>
|
|
|
|
|
|
|
+ <p>
|
|
|
|
|
+ Please consider supporting Django by making a donation to the
|
|
|
|
|
+ <a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
|
|
|
|
|
+ sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
|
|
|
|
|
+ or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.
|
|
|
|
|
+ </p>
|
|
|
|
|
|
|
|
- <p>
|
|
|
|
|
- Awesome Django is not associated with the Django Software Foundation.<br />
|
|
|
|
|
- Django is a registered trademark of the Django Software Foundation.
|
|
|
|
|
- </p>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <p>
|
|
|
|
|
+ Awesome Django is not associated with the Django Software Foundation.<br />
|
|
|
|
|
+ Django is a registered trademark of the Django Software Foundation.
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ {# The theme's own meta bar: copyright, "Made with Zensical", social links. #}
|
|
|
|
|
+ <div class="md-footer-meta md-typeset">
|
|
|
|
|
+ <div class="md-footer-meta__inner md-grid">
|
|
|
|
|
+ {% include "partials/copyright.html" %}
|
|
|
|
|
+ {% if config.extra.social %}
|
|
|
|
|
+ {% include "partials/social.html" %}
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </footer>
|
|
|
{% endblock %}
|
|
{% endblock %}
|