Compare commits

..

No commits in common. "64d7b6779af00800b1e57ef7bf55db188df4b74f" and "cf82976e9cffef4043be2b0d9d128b5de4f23495" have entirely different histories.

19 changed files with 12 additions and 19 deletions

View File

@ -10,18 +10,16 @@
{% 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 -%}
{% if currentUrl === "/changelogs/" %}aria-current="page"{% endif %}
href="/changelogs/"
>Changelogs</a></li>
{%- for statement in collections.statements -%}
<li><a
{% if entry.url == page.url %}aria-current="page"{% endif %}
href="{{ statement.url }}"
>{{ statement.data.title }}</a></li>
{%- endfor -%}
</ul>
{% endblock %}

View File

@ -2,7 +2,7 @@
{% block navbarLinks %}
{% set currentUrl %}{{ page.url }}{% endset %}
{% set navPages = collections["navbar links"] | eleventyNavigation %}
{% set navPages = collections.pages | eleventyNavigation %}
{%- for entry in navPages %}
<li>
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>

View File

@ -1,3 +0,0 @@
{
"tags": "footer links"
}

View File

@ -1,3 +0,0 @@
{
"tags": "navbar links"
}

View File

@ -2,8 +2,9 @@
"layout": "main/statement",
"tags": "statements",
"articleElement": true,
"permalink": "/{{ page.fileSlug }}/",
"eleventyComputed": {
"desc": "{{ sitemeta.siteName | safe }}'s {{ keyword }}.",
"desc": "{{ sitemeta.siteName }}'s {{ keyword }}.",
"eleventyNavigation":{
"key": "{{ title }}"
}