| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {% 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 %}
- {% 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>
- <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>
- {% endblock %}
|