main.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <iframe
  15. src="https://django-news.com/embed?color1=ffffff&color2=092e20&color_bg_button=092e20&color_border=ccc&color_button=ffffff&color_links=979797&color_terms=808080&title=Subscribe+to+Django+News"
  16. width="450"
  17. height="310"
  18. loading="lazy"
  19. title="Subscribe to Django News"></iframe>
  20. <div class="awesome-django-webring">
  21. <webring-css site="https://awesomedjango.org"></webring-css>
  22. <script src="https://djangowebring.com/static/webring.js"></script>
  23. </div>
  24. <p>
  25. Please consider supporting Django by making a donation to the
  26. <a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
  27. sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
  28. or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.
  29. </p>
  30. <p>
  31. Awesome Django is not associated with the Django Software Foundation.<br />
  32. Django is a registered trademark of the Django Software Foundation.
  33. </p>
  34. </div>
  35. {% endblock %}