| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {% extends "base.html" %}
- {#
- Carried over from the Jekyll theme:
- - _includes/head_custom.html (favicon, fork ribbon, umami analytics)
- - _config.yml footer_content (Django News embed, webring, DSF notice)
- #}
- {% block extrahead %}
- <link rel="icon" href="https://fav.farm/🦄" />
- <script defer src="https://uma.cog.gs/script.js" data-website-id="744740f8-2ff1-4a59-9e0f-7740fc8ca3c4"></script>
- {% 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 %}
- <footer class="md-footer">
- <div class="awesome-django-footer md-grid">
- <h2 class="awesome-django-footer__title">Looking for more cool projects?</h2>
- <p class="awesome-django-footer__lede">
- Django News is a free weekly newsletter. It covers new packages,
- articles, releases, and jobs from across the Django community.
- </p>
- <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>
- <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>
- {# 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 %}
|