mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-04 20:22:41 +00:00
Tweak Nunjucks indentation
This commit is contained in:
parent
1943159f11
commit
1d5d5acec9
@ -5,10 +5,10 @@ shrineHomeUrl: /shrines/asummersend/
|
||||
{% extends "global/navbar.njk" %}
|
||||
|
||||
{% block navbarLinks %}
|
||||
{% set navPages = collections.all | eleventyNavigation("A Summer’s End Shrine") %}
|
||||
{%- for entry in navPages %}
|
||||
<li>
|
||||
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>
|
||||
</li>
|
||||
{%- endfor %}
|
||||
{% set navPages = collections.all | eleventyNavigation("A Summer’s End Shrine") %}
|
||||
{%- for entry in navPages %}
|
||||
<li>
|
||||
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>
|
||||
</li>
|
||||
{%- endfor %}
|
||||
{% endblock %}
|
@ -19,7 +19,7 @@
|
||||
<h4>Download the mod:</h4>
|
||||
<div class="mod-entry__downloads">
|
||||
{%- for download in params.downloads -%}
|
||||
<a class="link-btn" href="{{ download.url }}">{{ download.site }}</a>
|
||||
<a class="link-btn" href="{{ download.url }}">{{ download.site }}</a>
|
||||
{%- endfor -%}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,7 +1,7 @@
|
||||
{% for log in changelogList | reverse %}
|
||||
{% headingAnchor 2, log.fileSlug %}
|
||||
{{ log.date | formatDate }}
|
||||
{% endheadingAnchor %}
|
||||
{% headingAnchor 2, log.fileSlug %}
|
||||
{{ log.date | formatDate }}
|
||||
{% endheadingAnchor %}
|
||||
|
||||
{{ log.content | safe }}
|
||||
{{ log.content | safe }}
|
||||
{%- endfor %}
|
||||
|
@ -14,10 +14,10 @@ articleElement: true
|
||||
>Latest</a></li>
|
||||
{% set navPages = collections.all | eleventyNavigation("Changelogs") | reverse %}
|
||||
{%- for entry in navPages %}
|
||||
<li><a
|
||||
{% if entry.url == page.url %}aria-current="page"{% endif %}
|
||||
href="{{ entry.url }}"
|
||||
>{{ entry.title }}</a></li>
|
||||
<li><a
|
||||
{% if entry.url == page.url %}aria-current="page"{% endif %}
|
||||
href="{{ entry.url }}"
|
||||
>{{ entry.title }}</a></li>
|
||||
{%- endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
@ -3,11 +3,11 @@
|
||||
<h2 class="content__nav--title" id="my-contents-title">My Contents</h2>
|
||||
<ul class="content__nav--links">
|
||||
{% for archive in collections.archive %}
|
||||
<li><a href="{{ archive.url }}">{{ archive.data.title }}</a></li>
|
||||
<li><a href="{{ archive.url }}">{{ archive.data.title }}</a></li>
|
||||
{% endfor %}
|
||||
<li><a href="/articles/">Articles</a></li>
|
||||
{% for page in collections["blog pages"] %}
|
||||
<li><a href="{{ page.url }}">{{ page.data.navTitle or page.data.title }}</a></li>
|
||||
<li><a href="{{ page.url }}">{{ page.data.navTitle or page.data.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
@ -11,18 +11,18 @@
|
||||
{% if currentUrl === "/sitemap/" %}aria-current="page"{% endif %}
|
||||
href="/sitemap/
|
||||
">Site Map</a></li>
|
||||
{%- for link in collections["footer links"] -%}
|
||||
{%- 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 -%}
|
||||
{%- 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 -%}
|
||||
{%- endfor -%}
|
||||
</ul>
|
||||
<p>Made with ♥ by {{ sitemeta.siteAuthor.name }} since 11 September 2022</p>
|
||||
{% endblock %}
|
||||
|
@ -17,9 +17,9 @@ isContentDivided: true
|
||||
<nav aria-labelledby="tabs-title">
|
||||
<h3 class="visually-hidden" id="tabs-title">Tabs Group</h3>
|
||||
<ul class="tabs">
|
||||
{% for group in linkGroups %}
|
||||
{% for group in linkGroups %}
|
||||
<li><a class="tab__btn" href="#{{ group.data.title | slugify }}">{{ group.data.title }}</a></li>
|
||||
{%- endfor %}
|
||||
{%- endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
</section>
|
||||
@ -44,5 +44,5 @@ isContentDivided: true
|
||||
|
||||
<a href="#linktabs" class="tab__btn tab__back">Back to tabs</a>
|
||||
</section>
|
||||
{%- endfor %}
|
||||
{%- endfor %}
|
||||
</article>
|
@ -1,11 +1,11 @@
|
||||
{% extends "global/navbar.njk" %}
|
||||
|
||||
{% block navbarLinks %}
|
||||
{% set currentUrl %}{{ page.url }}{% endset %}
|
||||
{% 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>
|
||||
</li>
|
||||
{%- endfor %}
|
||||
{% set currentUrl %}{{ page.url }}{% endset %}
|
||||
{% 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>
|
||||
</li>
|
||||
{%- endfor %}
|
||||
{% endblock %}
|
@ -5,10 +5,10 @@ shrineHomeUrl: /shrines/pokemonoras/
|
||||
{% extends "global/navbar.njk" %}
|
||||
|
||||
{% block navbarLinks %}
|
||||
{% set navPages = collections.all | eleventyNavigation("ORAS Shrine") %}
|
||||
{%- for entry in navPages %}
|
||||
<li>
|
||||
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>
|
||||
</li>
|
||||
{%- endfor %}
|
||||
{% set navPages = collections.all | eleventyNavigation("ORAS Shrine") %}
|
||||
{%- for entry in navPages %}
|
||||
<li>
|
||||
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>
|
||||
</li>
|
||||
{%- endfor %}
|
||||
{% endblock %}
|
@ -5,10 +5,10 @@ shrineHomeUrl: /shrines/starwarskotor/
|
||||
{% extends "global/navbar.njk" %}
|
||||
|
||||
{% block navbarLinks %}
|
||||
{% set navPages = collections.all | eleventyNavigation("KotOR Shrine") %}
|
||||
{%- for entry in navPages %}
|
||||
<li>
|
||||
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>
|
||||
</li>
|
||||
{%- endfor %}
|
||||
{% set navPages = collections.all | eleventyNavigation("KotOR Shrine") %}
|
||||
{%- for entry in navPages %}
|
||||
<li>
|
||||
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>
|
||||
</li>
|
||||
{%- endfor %}
|
||||
{% endblock %}
|
@ -11,30 +11,30 @@ eleventyNavigation:
|
||||
|
||||
<ul class="blog__postlist">
|
||||
{% for post in collections.posts | reverse %}
|
||||
<li class="blog__postlist--item">
|
||||
<h2 class="blog__postlist--title">
|
||||
<a href="{{ post.url }}">
|
||||
{% if post.data.title %}{{ post.data.articleTitle }}
|
||||
{% else %}
|
||||
<code>{{ post.url }}</code>
|
||||
{% endif %}
|
||||
</a>
|
||||
</h2>
|
||||
<time datetime="{{ post.date }}">{{ post.date | formatDate }}</time>
|
||||
</li>
|
||||
<li class="blog__postlist--item">
|
||||
<h2 class="blog__postlist--title">
|
||||
<a href="{{ post.url }}">
|
||||
{% if post.data.title %}{{ post.data.articleTitle }}
|
||||
{% else %}
|
||||
<code>{{ post.url }}</code>
|
||||
{% endif %}
|
||||
</a>
|
||||
</h2>
|
||||
<time datetime="{{ post.date }}">{{ post.date | formatDate }}</time>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{%- css %}
|
||||
.blog__postlist {
|
||||
display: grid;
|
||||
gap: 1em;
|
||||
padding-left: 1em;
|
||||
}
|
||||
.blog__postlist {
|
||||
display: grid;
|
||||
gap: 1em;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
.blog__postlist--title {
|
||||
font-size: clamp(1.55rem, 1rem + 3vw, 1.3rem);
|
||||
line-height: 1.3;
|
||||
margin-bottom: 0.2em;
|
||||
}
|
||||
.blog__postlist--title {
|
||||
font-size: clamp(1.55rem, 1rem + 3vw, 1.3rem);
|
||||
line-height: 1.3;
|
||||
margin-bottom: 0.2em;
|
||||
}
|
||||
{% endcss %}
|
@ -9,10 +9,10 @@ eleventyNavigation:
|
||||
---
|
||||
|
||||
{%- macro siteLayout(params) -%}
|
||||
## {{ params.title }}
|
||||
{% for screenshot in params.screenshots %}
|
||||
<img src="/assets/layouts/{{ screenshot.imgFile }}" alt="{{ screenshot.imgAlt }}" loading="lazy">
|
||||
{% endfor %}
|
||||
## {{ params.title }}
|
||||
{% for screenshot in params.screenshots %}
|
||||
<img src="/assets/layouts/{{ screenshot.imgFile }}" alt="{{ screenshot.imgAlt }}" loading="lazy">
|
||||
{% endfor %}
|
||||
{%- endmacro -%}
|
||||
|
||||
{{ siteLayout({
|
||||
|
@ -52,8 +52,8 @@ eleventyComputed:
|
||||
<h2>What is New?</h2>
|
||||
<div class="text-box">
|
||||
{% for log in collections["changelogs"] | reverse | itemLimit(1) %}
|
||||
<h3>{{ log.data.title }}</h3>
|
||||
{{ log.content | safe }}
|
||||
<h3>{{ log.data.title }}</h3>
|
||||
{{ log.content | safe }}
|
||||
{%- endfor %}
|
||||
<p><a href="/changelogs">View all site changelogs</a></p>
|
||||
</div>
|
||||
@ -66,9 +66,9 @@ eleventyComputed:
|
||||
<h2>Always Proud</h2>
|
||||
<div class="flag-el flag-progress-intersex-lesbian" role="img" aria-label="Custom pride flag which combines the lesbian pride flag and the progress pride flag triangle" style="margin-bottom: 1em;"></div>
|
||||
{%- macro prideButton(file, alt, width=88, height=31) -%}
|
||||
<li data-tooltip>
|
||||
<img src="/assets/buttons/pride/{{ file }}.png" alt="{{ alt }}" data-tooltip-trigger title="{{ alt }}" width="{{ width }}" height="{{ height }}" loading="lazy" tabindex="0">
|
||||
</li>
|
||||
<li data-tooltip>
|
||||
<img src="/assets/buttons/pride/{{ file }}.png" alt="{{ alt }}" data-tooltip-trigger title="{{ alt }}" width="{{ width }}" height="{{ height }}" loading="lazy" tabindex="0">
|
||||
</li>
|
||||
{%- endmacro -%}
|
||||
<ul class="web-graphics">
|
||||
{{ prideButton("progress", "Progress Flag by Daniel Quasar (2018)") }}
|
||||
|
@ -8,9 +8,9 @@ eleventyNavigation:
|
||||
|
||||
<ul>
|
||||
{% for category in collections.categories %}
|
||||
{% set categoryUrl %}/categories/{{ category | slugify }}/{% endset %}
|
||||
{% set categoryPostCount = collections.contents | filterByCategory(category) | length %}
|
||||
<li><a href="{{ categoryUrl }}">{{ category }}</a> ({{ categoryPostCount }})</li>
|
||||
{% set categoryUrl %}/categories/{{ category | slugify }}/{% endset %}
|
||||
{% set categoryPostCount = collections.contents | filterByCategory(category) | length %}
|
||||
<li><a href="{{ categoryUrl }}">{{ category }}</a> ({{ categoryPostCount }})</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
|
@ -16,8 +16,8 @@ eleventyNavigation:
|
||||
|
||||
<h2>Latest Changelogs</h2>
|
||||
{% for log in changelogs %}
|
||||
<h3 class="date-style"><time datetime="{{ log.date }}">{{ log.date | formatDate }}</time></h3>
|
||||
{{ log.content | safe }}
|
||||
<h3 class="date-style"><time datetime="{{ log.date }}">{{ log.date | formatDate }}</time></h3>
|
||||
{{ log.content | safe }}
|
||||
{%- endfor %}
|
||||
|
||||
{% include "global/pagination-oldnew.njk" %}
|
||||
|
@ -10,25 +10,25 @@ eleventyNavigation:
|
||||
---
|
||||
|
||||
{%- macro virtualPet(url, img, alt, tooltip=alt) -%}
|
||||
<li data-tooltip>
|
||||
<a href="{{ url }}" data-tooltip-trigger title="{{ tooltip }}">
|
||||
<img src="{{ img }}" alt="{{ alt }}" loading="lazy">
|
||||
</a>
|
||||
</li>
|
||||
<li data-tooltip>
|
||||
<a href="{{ url }}" data-tooltip-trigger title="{{ tooltip }}">
|
||||
<img src="{{ img }}" alt="{{ alt }}" loading="lazy">
|
||||
</a>
|
||||
</li>
|
||||
{%- endmacro -%}
|
||||
|
||||
{%- macro myPixelArt(file, alt, tooltip=alt) -%}
|
||||
<li data-tooltip>
|
||||
<img src="/assets/adoptables/{{ file }}" alt="{{ alt }}" data-tooltip-trigger title="{{ tooltip }}" loading="lazy" tabindex="0">
|
||||
</li>
|
||||
<li data-tooltip>
|
||||
<img src="/assets/adoptables/{{ file }}" alt="{{ alt }}" data-tooltip-trigger title="{{ tooltip }}" loading="lazy" tabindex="0">
|
||||
</li>
|
||||
{%- endmacro -%}
|
||||
|
||||
{%- macro adoptable(url, file, alt, tooltip=alt) -%}
|
||||
<li data-tooltip>
|
||||
<a href="{{ url }}" data-tooltip-trigger title="{{ tooltip }}">
|
||||
<img src="/assets/adoptables/{{ file }}" alt="{{ alt }}" loading="lazy">
|
||||
</a>
|
||||
</li>
|
||||
<li data-tooltip>
|
||||
<a href="{{ url }}" data-tooltip-trigger title="{{ tooltip }}">
|
||||
<img src="/assets/adoptables/{{ file }}" alt="{{ alt }}" loading="lazy">
|
||||
</a>
|
||||
</li>
|
||||
{%- endmacro -%}
|
||||
|
||||
<section class="content__section">
|
||||
|
@ -24,20 +24,20 @@ eleventyComputed:
|
||||
<section class="content__section">
|
||||
<h2>Blog Posts</h2>
|
||||
<ul class="blog__posts">
|
||||
{% for post in postList %}
|
||||
{% for post in postList %}
|
||||
<li class="blog__post">
|
||||
<h3 class="blog__post--title">
|
||||
<a href="{{ post.url }}">
|
||||
{% if post.data.title %}{{ post.data.articleTitle }}
|
||||
{% else %}
|
||||
<code>{{ post.url }}</code>
|
||||
<code>{{ post.url }}</code>
|
||||
{% endif %}
|
||||
</a>
|
||||
</h3>
|
||||
<p class="blog__post--time"><time datetime="{{ post.date }}">{{ post.date | formatDate }}</time></p>
|
||||
<p>{{ post.data.desc }}</p>
|
||||
</li>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% include "global/pagination-oldnew.njk" %}
|
||||
|
@ -17,18 +17,18 @@ eleventyComputed:
|
||||
{% container "section", "content__section" %}
|
||||
## My Code Projects
|
||||
<ul>
|
||||
{%- for project in collections["code projects"] -%}
|
||||
{%- for project in collections["code projects"] -%}
|
||||
<li><a href="{{ project.url }}">{{ project.data.title }}</a> — {{ project.data.desc }}</li>
|
||||
{%- endfor -%}
|
||||
{%- endfor -%}
|
||||
</ul>
|
||||
{% endcontainer %}
|
||||
|
||||
{% container "section", "content__section" %}
|
||||
## My Code Snippets
|
||||
<ul>
|
||||
{%- for snippet in collections["code snippets"] -%}
|
||||
{%- for snippet in collections["code snippets"] -%}
|
||||
<li><a href="{{ snippet.url }}">{{ snippet.data.title }}</a> — {{ snippet.data.desc }}</li>
|
||||
{%- endfor -%}
|
||||
{%- endfor -%}
|
||||
</ul>
|
||||
{% endcontainer %}
|
||||
|
||||
@ -45,11 +45,11 @@ My drawings can be found on my art blog on Tumblr:
|
||||
|
||||
I have created mods (short for "modifications") for the following video games:
|
||||
<ul>
|
||||
{%- for mods in collections["video game mods"] -%}
|
||||
{%- for mods in collections["video game mods"] -%}
|
||||
<li>
|
||||
<a href="{{ mods.url }}">{{ mods.data.title }}</a>
|
||||
</li>
|
||||
{%- endfor -%}
|
||||
{%- endfor -%}
|
||||
</ul>
|
||||
{% endcontainer %}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user