5-72

5-72.com helps novice musicians master sound engineering by analyzing the FX chains of world-famous artists
Log | Files | Refs

footer.html (2001B)


      1 {#-
      2   This file was automatically generated - do not edit
      3 -#}
      4 <footer class="md-footer">
      5   {% if page.previous_page or page.next_page %}
      6     {% if page.meta and page.meta.hide %}
      7       {% set hidden = "hidden" if "footer" in page.meta.hide %}
      8     {% endif %}
      9     <nav class="md-footer__inner md-grid" aria-label="{{ lang.t('footer.title') }}" {{ hidden }}>
     10       {% if page.previous_page %}
     11         {% set direction = lang.t("footer.previous") %}
     12         <a href="{{ page.previous_page.url | url }}" class="md-footer__link md-footer__link--prev" aria-label="{{ direction }}: {{ page.previous_page.title | e }}" rel="prev">
     13           <div class="md-footer__button md-icon">
     14             {% include ".icons/material/arrow-left.svg" %}
     15           </div>
     16           <div class="md-footer__title">
     17             <div class="md-ellipsis">
     18               <span class="md-footer__direction">
     19                 {{ direction }}
     20               </span>
     21               {{ page.previous_page.title }}
     22             </div>
     23           </div>
     24         </a>
     25       {% endif %}
     26       {% if page.next_page %}
     27         {% set direction = lang.t("footer.next") %}
     28         <a href="{{ page.next_page.url | url }}" class="md-footer__link md-footer__link--next" aria-label="{{ direction }}: {{ page.next_page.title | e }}" rel="next">
     29           <div class="md-footer__title">
     30             <div class="md-ellipsis">
     31               <span class="md-footer__direction">
     32                 {{ direction }}
     33               </span>
     34               {{ page.next_page.title }}
     35             </div>
     36           </div>
     37           <div class="md-footer__button md-icon">
     38             {% include ".icons/material/arrow-right.svg" %}
     39           </div>
     40         </a>
     41       {% endif %}
     42     </nav>
     43   {% endif %}
     44   <div class="md-footer-meta md-typeset">
     45     <div class="md-footer-meta__inner md-grid">
     46       {% include "partials/copyright.html" %}
     47       {% if config.extra.social %}
     48         {% include "partials/social.html" %}
     49       {% endif %}
     50     </div>
     51   </div>
     52 </footer>