1+ <!--
2+ Copyright (c) 2016-2020 Martin Donath <martin.donath@squidfunk.com>
3+ Permission is hereby granted, free of charge, to any person obtaining a copy
4+ of this software and associated documentation files (the "Software"), to
5+ deal in the Software without restriction, including without limitation the
6+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7+ sell copies of the Software, and to permit persons to whom the Software is
8+ furnished to do so, subject to the following conditions:
9+ The above copyright notice and this permission notice shall be included in
10+ all copies or substantial portions of the Software.
11+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13+ FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
14+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
16+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
17+ IN THE SOFTWARE.
18+ -->
19+
20+ {% import "partials/language.html" as lang with context %}
21+
22+ <!-- Application footer -->
23+ < footer class ="md-footer ">
24+
25+ <!-- Link to previous and/or next page -->
26+ {% if page.previous_page or page.next_page %}
27+ < div class ="md-footer-nav ">
28+ < nav
29+ class ="md-footer-nav__inner md-grid "
30+ aria-label ="{{ lang.t('footer.title') }} "
31+ >
32+
33+ <!-- Link to previous page -->
34+ {% if page.previous_page %}
35+ < a
36+ href ="{{ page.previous_page.url | url }} "
37+ title ="{{ page.previous_page.title | striptags }} "
38+ class ="md-footer-nav__link md-footer-nav__link--prev "
39+ rel ="prev "
40+ >
41+ < div class ="md-footer-nav__button md-icon ">
42+ {% include ".icons/material/arrow-left.svg" %}
43+ </ div >
44+ < div class ="md-footer-nav__title ">
45+ < div class ="md-ellipsis ">
46+ < span class ="md-footer-nav__direction ">
47+ {{ lang.t("footer.previous") }}
48+ </ span >
49+ {{ page.previous_page.title }}
50+ </ div >
51+ </ div >
52+ </ a >
53+ {% endif %}
54+
55+ <!-- Link to next page -->
56+ {% if page.next_page %}
57+ < a
58+ href ="{{ page.next_page.url | url }} "
59+ title ="{{ page.next_page.title | striptags }} "
60+ class ="md-footer-nav__link md-footer-nav__link--next "
61+ rel ="next "
62+ >
63+ < div class ="md-footer-nav__title ">
64+ < div class ="md-ellipsis ">
65+ < span class ="md-footer-nav__direction ">
66+ {{ lang.t("footer.next") }}
67+ </ span >
68+ {{ page.next_page.title }}
69+ </ div >
70+ </ div >
71+ < div class ="md-footer-nav__button md-icon ">
72+ {% include ".icons/material/arrow-right.svg" %}
73+ </ div >
74+ </ a >
75+ {% endif %}
76+ </ nav >
77+ </ div >
78+ {% endif %}
79+
80+ <!-- Further information -->
81+ < div class ="md-footer-meta md-typeset ">
82+ < div class ="md-footer-meta__inner md-grid ">
83+
84+ <!-- Copyright and theme information -->
85+ < div class ="md-footer-copyright ">
86+ < div class ="x3 ">
87+ < a href ="https://starkandwayne.com "> < img src ="/images/swlogo.png "> </ a >
88+
89+ The Concourse Tutorial was originally developed and is hosted by
90+ < a href ="https://starkandwayne.com "> Stark & Wayne</ a > .
91+ < br /> The Guide is maintained by a Community of dedicated Open Source
92+ contributors.
93+ </ div >
94+ </ div >
95+
96+ <!-- Social links -->
97+ {% include "partials/social.html" %}
98+ </ div >
99+ </ div >
100+ </ footer >
0 commit comments