footer.html 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {% import "partials/language.html" as lang with context %}
  2. <footer class="md-footer">
  3. <div class="help-sidetab">
  4. <div class="md-footer-meta__help">
  5. <a href="https://www.goquorum.com/slack-inviter" target="_blank" rel="noopener">
  6. Need further help?
  7. </a>
  8. </div>
  9. </div>
  10. <!-- Link to previous and/or next page -->
  11. {% if page.previous_page or page.next_page %}
  12. <div class="md-footer-nav">
  13. <nav class="md-footer-nav__inner md-grid">
  14. <!-- Link to previous page -->
  15. {% if page.previous_page %}
  16. <a href="{{ page.previous_page.url | url }}"
  17. title="{{ page.previous_page.title }}"
  18. class="md-flex md-footer-nav__link md-footer-nav__link--prev"
  19. rel="prev">
  20. <div class="md-flex__cell md-flex__cell--shrink">
  21. <i class="md-icon md-icon--arrow-back
  22. md-footer-nav__button"></i>
  23. </div>
  24. <div class="md-flex__cell md-flex__cell--stretch
  25. md-footer-nav__title">
  26. <span class="md-flex__ellipsis">
  27. <span class="md-footer-nav__direction">
  28. {{ lang.t("footer.previous") }}
  29. </span>
  30. {{ page.previous_page.title }}
  31. </span>
  32. </div>
  33. </a>
  34. {% endif %}
  35. <!-- Link to next page -->
  36. {% if page.next_page %}
  37. <a href="{{ page.next_page.url | url }}"
  38. title="{{ page.next_page.title }}"
  39. class="md-flex md-footer-nav__link md-footer-nav__link--next"
  40. rel="next">
  41. <div class="md-flex__cell md-flex__cell--stretch
  42. md-footer-nav__title">
  43. <span class="md-flex__ellipsis">
  44. <span class="md-footer-nav__direction">
  45. {{ lang.t("footer.next") }}
  46. </span>
  47. {{ page.next_page.title }}
  48. </span>
  49. </div>
  50. <div class="md-flex__cell md-flex__cell--shrink">
  51. <i class="md-icon md-icon--arrow-forward
  52. md-footer-nav__button"></i>
  53. </div>
  54. </a>
  55. {% endif %}
  56. </nav>
  57. </div>
  58. {% endif %}
  59. </footer>
  60. <footer>
  61. <div class="md-footer-meta md-typeset">
  62. <div class="md-footer-meta__inner md-grid">
  63. <div class="md-footer-copyright">
  64. {% if config.copyright %}
  65. <div class="md-footer-copyright__highlight">
  66. {{ config.copyright }}
  67. </div>
  68. {% endif %}
  69. powered by
  70. <a href="https://www.mkdocs.org">MkDocs</a>
  71. and
  72. <a href="https://squidfunk.github.io/mkdocs-material/">
  73. Material for MkDocs</a>
  74. </div>
  75. {% include "partials/social.html" %}
  76. </div>
  77. </div>
  78. </footer>