Skip to content

Commit c28510d

Browse files
committed
updated for mkdocs-material 7.1.1
1 parent bed6605 commit c28510d

File tree

3 files changed

+49
-43
lines changed

3 files changed

+49
-43
lines changed

requirements.txt

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Install requirements:
22
# pip install -r requirements.txt
3-
mkdocs
4-
mkdocs-material
5-
mkdocs-minify-plugin
6-
pymdown-extensions
3+
mkdocs>=1.1.2,<2.0.0
4+
mkdocs-material>=7.1.1,<8.0.0
5+
pymdown-extensions>=8.0.1,<9.0.0
6+
# Missing 1.0.0 Release
7+
mkdocs-minify-plugin>=0.3.0<1.0.0

page_template.md template_page.md

File renamed without changes.

theme/partials/footer.html

+44-39
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,65 @@
1-
{#-
2-
This file was automatically generated - do not edit
3-
-#}
4-
{% import "partials/language.html" as lang with context %}
1+
<!-- Footer -->
52
<footer class="md-footer">
3+
4+
<!-- Link to previous and/or next page -->
65
{% 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") }}
2118
</span>
19+
{{ page.previous_page.title }}
2220
</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") }}
3432
</span>
33+
{{ page.next_page.title }}
3534
</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>
4342
{% endif %}
43+
44+
<!-- Further information -->
4445
<div class="md-footer-meta md-typeset">
4546
<div class="md-footer-meta__inner md-grid">
47+
48+
<!-- Copyright and theme information -->
4649
<div class="md-footer-copyright">
4750
{% if config.copyright %}
4851
<div class="md-footer-copyright__highlight">
4952
{{ config.copyright }}
5053
</div>
5154
{% endif %}
52-
Created by
53-
<a href="https://Tayler.Tech" target="_blank">Tayler Uva</a><br>
5455
Powered by
5556
<a href="https://SuperNURDs.com" target="_blank">
56-
FRC Team 3255 - The SuperNURDs</a>
57+
FRC Team 3255 - The SuperNURDs
58+
</a>
59+
{{ extracopyright }}
5760
</div>
61+
62+
<!-- Social links -->
5863
{% include "partials/social.html" %}
5964
</div>
6065
</div>

0 commit comments

Comments
 (0)