Group all slash pages in one folder

This commit is contained in:
Helen Chong 2024-09-14 22:46:46 +08:00
parent cf82976e9c
commit d32bcb5ef1
18 changed files with 8 additions and 3 deletions

View File

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

View File

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

View File

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

View File

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