mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-03 02:20:52 +00:00
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
{% extends "global/footer.njk" %}
|
|
|
|
{% block footerContent %}
|
|
<p>Made with ♥ by {{ sitemeta.siteAuthor.name }} since 11 September 2022</p>
|
|
|
|
{% set currentUrl %}{{ page.url }}{% endset %}
|
|
<ul class="inline-nav footer__links">
|
|
<li><a href="{{ sitemeta.feedPath }}">RSS Feed</a></li>
|
|
<li><a
|
|
{% if currentUrl === "/sitemap/" %}aria-current="page"{% endif %}
|
|
href="/sitemap/
|
|
">Site Map</a></li>
|
|
{%- for link in collections["footer links"] -%}
|
|
<li><a
|
|
{% if link.url == page.url %}aria-current="page"{% endif %}
|
|
href="{{ link.url }}"
|
|
>{{ link.data.title }}</a></li>
|
|
{%- endfor -%}
|
|
{%- for statement in collections.statements -%}
|
|
<li><a
|
|
{% if statement.url == page.url %}aria-current="page"{% endif %}
|
|
href="{{ statement.url }}"
|
|
>{{ statement.data.title }}</a></li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
<p>Made with ♥ by {{ sitemeta.siteAuthor.name }} since 11 September 2022</p>
|
|
{% endblock %}
|
|
|