github.com/kisexp/xdchain@v0.0.0-20211206025815-490d6b732aa7/docs/theme/partials/footer.html (about) 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 15 <!-- Link to previous page --> 16 {% if page.previous_page %} 17 <a href="{{ page.previous_page.url | url }}" 18 title="{{ page.previous_page.title }}" 19 class="md-flex md-footer-nav__link md-footer-nav__link--prev" 20 rel="prev"> 21 <div class="md-flex__cell md-flex__cell--shrink"> 22 <i class="md-icon md-icon--arrow-back 23 md-footer-nav__button"></i> 24 </div> 25 <div class="md-flex__cell md-flex__cell--stretch 26 md-footer-nav__title"> 27 <span class="md-flex__ellipsis"> 28 <span class="md-footer-nav__direction"> 29 {{ lang.t("footer.previous") }} 30 </span> 31 {{ page.previous_page.title }} 32 </span> 33 </div> 34 </a> 35 {% endif %} 36 37 <!-- Link to next page --> 38 {% if page.next_page %} 39 <a href="{{ page.next_page.url | url }}" 40 title="{{ page.next_page.title }}" 41 class="md-flex md-footer-nav__link md-footer-nav__link--next" 42 rel="next"> 43 <div class="md-flex__cell md-flex__cell--stretch 44 md-footer-nav__title"> 45 <span class="md-flex__ellipsis"> 46 <span class="md-footer-nav__direction"> 47 {{ lang.t("footer.next") }} 48 </span> 49 {{ page.next_page.title }} 50 </span> 51 </div> 52 <div class="md-flex__cell md-flex__cell--shrink"> 53 <i class="md-icon md-icon--arrow-forward 54 md-footer-nav__button"></i> 55 </div> 56 </a> 57 {% endif %} 58 </nav> 59 </div> 60 {% endif %} 61 </footer> 62 <footer> 63 <div class="md-footer-meta md-typeset"> 64 <div class="md-footer-meta__inner md-grid"> 65 <div class="md-footer-copyright"> 66 {% if config.copyright %} 67 <div class="md-footer-copyright__highlight"> 68 {{ config.copyright }} 69 </div> 70 {% endif %} 71 powered by 72 <a href="https://www.mkdocs.org">MkDocs</a> 73 and 74 <a href="https://squidfunk.github.io/mkdocs-material/"> 75 Material for MkDocs</a> 76 </div> 77 {% include "partials/social.html" %} 78 </div> 79 </div> 80 </footer>