mirror of
https://github.com/tylernguyen/x1c6-hackintosh.git
synced 2025-02-05 17:33:13 -06:00
40 lines
No EOL
1.7 KiB
HTML
40 lines
No EOL
1.7 KiB
HTML
<footer class="md-footer">
|
|
{% if page.previous_page or page.next_page %}
|
|
<nav class="md-footer__inner md-grid" aria-label="{{ lang.t('footer.title') }}">
|
|
{% if page.previous_page %}
|
|
{% set direction = lang.t("footer.previous") %}
|
|
<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">
|
|
<div class="md-footer__button md-icon">
|
|
{% include ".icons/material/arrow-left.svg" %}
|
|
</div>
|
|
<div class="md-footer__title">
|
|
<div class="md-ellipsis">
|
|
<span class="md-footer__direction">
|
|
{{ direction }}
|
|
</span>
|
|
{{ page.previous_page.title }}
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{% endif %}
|
|
{% if page.next_page %}
|
|
{% set direction = lang.t("footer.next") %}
|
|
<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">
|
|
<div class="md-footer__title">
|
|
<div class="md-ellipsis">
|
|
<span class="md-footer__direction">
|
|
{{ direction }}
|
|
</span>
|
|
{{ page.next_page.title }}
|
|
</div>
|
|
</div>
|
|
<div class="md-footer__button md-icon">
|
|
{% include ".icons/material/arrow-right.svg" %}
|
|
</div>
|
|
</a>
|
|
{% endif %}
|
|
</nav>
|
|
{% endif %}
|
|
</footer> |