footer.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {#-
  2. This file was automatically generated - do not edit
  3. -#}
  4. {% import "partials/language.html" as lang with context %}
  5. <footer class="md-footer">
  6. {% if page.previous_page or page.next_page %}
  7. <div class="md-footer-nav">
  8. <nav class="md-footer-nav__inner md-grid" aria-label="{{ lang.t('footer.title') }}">
  9. {% if page.previous_page %}
  10. <a href="{{ page.previous_page.url | url }}" title="{{ page.previous_page.title | striptags }}" class="md-footer-nav__link md-footer-nav__link--prev" rel="prev">
  11. <div class="md-footer-nav__button md-icon">
  12. {% include ".icons/material/arrow-left.svg" %}
  13. </div>
  14. <div class="md-footer-nav__title">
  15. <div class="md-ellipsis">
  16. <span class="md-footer-nav__direction">
  17. {{ lang.t("footer.previous") }}
  18. </span>
  19. {{ page.previous_page.title }}
  20. </div>
  21. </div>
  22. </a>
  23. {% endif %}
  24. {% if page.next_page %}
  25. <a href="{{ page.next_page.url | url }}" title="{{ page.next_page.title | striptags }}" class="md-footer-nav__link md-footer-nav__link--next" rel="next">
  26. <div class="md-footer-nav__title">
  27. <div class="md-ellipsis">
  28. <span class="md-footer-nav__direction">
  29. {{ lang.t("footer.next") }}
  30. </span>
  31. {{ page.next_page.title }}
  32. </div>
  33. </div>
  34. <div class="md-footer-nav__button md-icon">
  35. {% include ".icons/material/arrow-right.svg" %}
  36. </div>
  37. </a>
  38. {% endif %}
  39. </nav>
  40. </div>
  41. {% endif %}
  42. <div class="md-footer-meta md-typeset">
  43. <div class="md-footer-meta__inner md-grid">
  44. <div class="md-footer-copyright">
  45. {% if config.copyright %}
  46. <div class="md-footer-copyright__highlight">
  47. {{ config.copyright }}
  48. </div>
  49. {% endif %}
  50. Made with
  51. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  52. Material for MkDocs
  53. </a>
  54. </div>
  55. {% include "partials/social.html" %}
  56. </div>
  57. </div>
  58. </footer>