scaffold unprompted site: eleventy, templates, gitea CI
Some checks failed
Deploy to S3 / deploy (push) Failing after 1m26s
Some checks failed
Deploy to S3 / deploy (push) Failing after 1m26s
This commit is contained in:
21
_includes/sidebar.njk
Normal file
21
_includes/sidebar.njk
Normal file
@@ -0,0 +1,21 @@
|
||||
<aside class="sidebar">
|
||||
<nav class="sidebar-nav">
|
||||
<h2>archive</h2>
|
||||
{%- set currentYear = null -%}
|
||||
{%- for column in collections.columns %}
|
||||
{%- set colYear = column.date | year -%}
|
||||
{%- if colYear != currentYear %}
|
||||
{%- if currentYear != null %}
|
||||
</ul>
|
||||
{%- endif %}
|
||||
{%- set currentYear = colYear %}
|
||||
<h3 class="year-label">{{ colYear }}</h3>
|
||||
<ul>
|
||||
{%- endif %}
|
||||
<li><a href="{{ column.url }}">{{ column.data.title }}</a></li>
|
||||
{%- endfor %}
|
||||
{%- if currentYear != null %}
|
||||
</ul>
|
||||
{%- endif %}
|
||||
</nav>
|
||||
</aside>
|
||||
Reference in New Issue
Block a user