Group all slash pages in one folder
This commit is contained in:
parent
cf82976e9c
commit
d32bcb5ef1
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
{% block navbarLinks %}
|
{% block navbarLinks %}
|
||||||
{% set currentUrl %}{{ page.url }}{% endset %}
|
{% set currentUrl %}{{ page.url }}{% endset %}
|
||||||
{% set navPages = collections.pages | eleventyNavigation %}
|
{% set navPages = collections["navbar links"] | eleventyNavigation %}
|
||||||
{%- for entry in navPages %}
|
{%- for entry in navPages %}
|
||||||
<li>
|
<li>
|
||||||
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>
|
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"tags": "footer links"
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"tags": "navbar links"
|
||||||
|
}
|
|
@ -2,9 +2,8 @@
|
||||||
"layout": "main/statement",
|
"layout": "main/statement",
|
||||||
"tags": "statements",
|
"tags": "statements",
|
||||||
"articleElement": true,
|
"articleElement": true,
|
||||||
"permalink": "/{{ page.fileSlug }}/",
|
|
||||||
"eleventyComputed": {
|
"eleventyComputed": {
|
||||||
"desc": "{{ sitemeta.siteName }}'s {{ keyword }}.",
|
"desc": "{{ sitemeta.siteName | safe }}'s {{ keyword }}.",
|
||||||
"eleventyNavigation":{
|
"eleventyNavigation":{
|
||||||
"key": "{{ title }}"
|
"key": "{{ title }}"
|
||||||
}
|
}
|
Loading…
Reference in New Issue