main.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {% extends "base.html" %}
  2. {#
  3. Carried over from the Jekyll theme:
  4. - _includes/head_custom.html (favicon, fork ribbon, umami analytics)
  5. - _config.yml footer_content (Django News embed, webring, DSF notice)
  6. #}
  7. {% block extrahead %}
  8. <link rel="icon" href="https://fav.farm/&#129412;" />
  9. <script defer src="https://uma.cog.gs/script.js" data-website-id="744740f8-2ff1-4a59-9e0f-7740fc8ca3c4"></script>
  10. {% endblock %}
  11. {% block footer %}
  12. {{ super() }}
  13. <div class="awesome-django-footer">
  14. <div class="awesome-django-newsletter">
  15. <iframe
  16. src="https://django-news.com?as_embed=true"
  17. scrolling="no"
  18. loading="lazy"
  19. title="Subscribe to Django News"></iframe>
  20. </div>
  21. <div class="awesome-django-webring">
  22. <webring-css site="https://awesomedjango.org"></webring-css>
  23. <script src="https://djangowebring.com/static/webring.js"></script>
  24. </div>
  25. <p>
  26. Please consider supporting Django by making a donation to the
  27. <a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
  28. sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
  29. or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.
  30. </p>
  31. <p>
  32. Awesome Django is not associated with the Django Software Foundation.<br />
  33. Django is a registered trademark of the Django Software Foundation.
  34. </p>
  35. </div>
  36. {% endblock %}