forked from szcf-weiya/ESL-CN
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6bd6744
commit 15cc869
Showing
2 changed files
with
63 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,61 @@ | ||
{% import "partials/language.html" as lang with context %}<footer class="md-footer"> {% if page.previous_page or page.next_page %} <div class="md-footer-nav"> <nav class="md-footer-nav__inner md-grid"> {% if page.previous_page %} <a href="{{ page.previous_page.url }}" title="{{ page.previous_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> <div class="md-flex__cell md-flex__cell--shrink"> <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> </div> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> <span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> {{ lang.t("footer.previous") }} </span> {{ page.previous_page.title }} </span> </div> </a> {% endif %} {% if page.next_page %} <a href="{{ page.next_page.url }}" title="{{ page.next_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> <span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> {{ lang.t("footer.next") }} </span> {{ page.next_page.title }} </span> </div> <div class="md-flex__cell md-flex__cell--shrink"> <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> </div> </a> {% endif %} </nav> </div> {% endif %} <div class="md-footer-meta md-typeset"> <div class="md-footer-meta__inner md-grid"> <div class="md-footer-copyright"> {% if config.copyright %} <div class="md-footer-copyright__highlight"> {{ config.copyright }} </div> {% endif %} powered by <a href="http://www.mkdocs.org">MkDocs</a> and <a href="https://squidfunk.github.io/mkdocs-material/"> Material for MkDocs</a> </div> {% block social %} {% include "partials/social.html" %} {% endblock %} </div> </div></footer> | ||
{% import "partials/language.html" as lang with context %} | ||
<footer class="md-footer"> | ||
{% if page.previous_page or page.next_page %} | ||
<div class="md-footer-nav"> | ||
<nav class="md-footer-nav__inner md-grid"> | ||
{% if page.previous_page %} | ||
<a href="{{ page.previous_page.url }}" title="{{ page.previous_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> | ||
<div class="md-flex__cell md-flex__cell--shrink"> | ||
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> | ||
</div> | ||
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> | ||
<span class="md-flex__ellipsis"> | ||
<span class="md-footer-nav__direction"> | ||
{{ lang.t("footer.previous") }} | ||
</span> | ||
{{ page.previous_page.title }} | ||
</span> | ||
</div> | ||
</a> | ||
{% endif %} | ||
{% if page.next_page %} | ||
<a href="{{ page.next_page.url }}" title="{{ page.next_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> | ||
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> | ||
<span class="md-flex__ellipsis"> | ||
<span class="md-footer-nav__direction"> | ||
{{ lang.t("footer.next") }} | ||
</span> | ||
{{ page.next_page.title }} | ||
</span> | ||
</div> | ||
<div class="md-flex__cell md-flex__cell--shrink"> | ||
<i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> | ||
</div> | ||
</a> | ||
{% endif %} | ||
</nav> | ||
</div> | ||
{% endif %} | ||
<div class="md-footer-meta md-typeset"> | ||
<div class="md-footer-meta__inner md-grid"> | ||
<div class="md-footer-copyright"> | ||
{% if config.copyright %} | ||
<div class="md-footer-copyright__highlight"> | ||
{{ config.copyright }} | ||
</div> | ||
{% endif %} | ||
<!-- | ||
powered by | ||
<a href="http://www.mkdocs.org">MkDocs</a> | ||
and | ||
<a href="https://squidfunk.github.io/mkdocs-material/"> | ||
Material for MkDocs</a> | ||
--> | ||
Last Build Date UTC : {{ build_date_utc }} | ||
</div> | ||
{% block social %} | ||
{% include "partials/social.html" %} | ||
{% endblock %} | ||
</div> | ||
</div> | ||
</footer> |