|
1 |
| -{#- |
2 |
| - This file was automatically generated - do not edit |
3 |
| --#} |
4 |
| -{% import "partials/language.html" as lang with context %} |
| 1 | +<!-- Footer --> |
5 | 2 | <footer class="md-footer">
|
| 3 | + |
| 4 | + <!-- Link to previous and/or next page --> |
6 | 5 | {% if page.previous_page or page.next_page %}
|
7 |
| - <div class="md-footer-nav"> |
8 |
| - <nav class="md-footer-nav__inner md-grid"> |
9 |
| - {% if page.previous_page %} |
10 |
| - <a href="{{ page.previous_page.url | url }}" title="{{ page.previous_page.title }}" |
11 |
| - class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> |
12 |
| - <div class="md-flex__cell md-flex__cell--shrink"> |
13 |
| - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> |
14 |
| - </div> |
15 |
| - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> |
16 |
| - <span class="md-flex__ellipsis"> |
17 |
| - <span class="md-footer-nav__direction"> |
18 |
| - {{ lang.t("footer.previous") }} |
19 |
| - </span> |
20 |
| - {{ page.previous_page.title }} |
| 6 | + <nav class="md-footer__inner md-grid" aria-label="{{ lang.t('footer.title') }}"> |
| 7 | + |
| 8 | + <!-- Link to previous page --> |
| 9 | + {% if page.previous_page %} |
| 10 | + <a href="{{ page.previous_page.url | url }}" class="md-footer__link md-footer__link--prev" rel="prev"> |
| 11 | + <div class="md-footer__button md-icon"> |
| 12 | + {% include ".icons/material/arrow-left.svg" %} |
| 13 | + </div> |
| 14 | + <div class="md-footer__title"> |
| 15 | + <div class="md-ellipsis"> |
| 16 | + <span class="md-footer__direction"> |
| 17 | + {{ lang.t("footer.previous") }} |
21 | 18 | </span>
|
| 19 | + {{ page.previous_page.title }} |
22 | 20 | </div>
|
23 |
| - </a> |
24 |
| - {% endif %} |
25 |
| - {% if page.next_page %} |
26 |
| - <a href="{{ page.next_page.url | url }}" title="{{ page.next_page.title }}" |
27 |
| - class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> |
28 |
| - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> |
29 |
| - <span class="md-flex__ellipsis"> |
30 |
| - <span class="md-footer-nav__direction"> |
31 |
| - {{ lang.t("footer.next") }} |
32 |
| - </span> |
33 |
| - {{ page.next_page.title }} |
| 21 | + </div> |
| 22 | + </a> |
| 23 | + {% endif %} |
| 24 | + |
| 25 | + <!-- Link to next page --> |
| 26 | + {% if page.next_page %} |
| 27 | + <a href="{{ page.next_page.url | url }}" class="md-footer__link md-footer__link--next" rel="next"> |
| 28 | + <div class="md-footer__title"> |
| 29 | + <div class="md-ellipsis"> |
| 30 | + <span class="md-footer__direction"> |
| 31 | + {{ lang.t("footer.next") }} |
34 | 32 | </span>
|
| 33 | + {{ page.next_page.title }} |
35 | 34 | </div>
|
36 |
| - <div class="md-flex__cell md-flex__cell--shrink"> |
37 |
| - <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> |
38 |
| - </div> |
39 |
| - </a> |
40 |
| - {% endif %} |
41 |
| - </nav> |
42 |
| - </div> |
| 35 | + </div> |
| 36 | + <div class="md-footer__button md-icon"> |
| 37 | + {% include ".icons/material/arrow-right.svg" %} |
| 38 | + </div> |
| 39 | + </a> |
| 40 | + {% endif %} |
| 41 | + </nav> |
43 | 42 | {% endif %}
|
| 43 | + |
| 44 | + <!-- Further information --> |
44 | 45 | <div class="md-footer-meta md-typeset">
|
45 | 46 | <div class="md-footer-meta__inner md-grid">
|
| 47 | + |
| 48 | + <!-- Copyright and theme information --> |
46 | 49 | <div class="md-footer-copyright">
|
47 | 50 | {% if config.copyright %}
|
48 | 51 | <div class="md-footer-copyright__highlight">
|
49 | 52 | {{ config.copyright }}
|
50 | 53 | </div>
|
51 | 54 | {% endif %}
|
52 |
| - Created by |
53 |
| - <a href="https://Tayler.Tech" target="_blank">Tayler Uva</a><br> |
54 | 55 | Powered by
|
55 | 56 | <a href="https://SuperNURDs.com" target="_blank">
|
56 |
| - FRC Team 3255 - The SuperNURDs</a> |
| 57 | + FRC Team 3255 - The SuperNURDs |
| 58 | + </a> |
| 59 | + {{ extracopyright }} |
57 | 60 | </div>
|
| 61 | + |
| 62 | + <!-- Social links --> |
58 | 63 | {% include "partials/social.html" %}
|
59 | 64 | </div>
|
60 | 65 | </div>
|
|
0 commit comments