1
Fork 0

ensure there's less newlines

This commit is contained in:
Jan-Erik Rediger 2025-03-13 10:35:55 +01:00
parent 804953cbd1
commit 261ddc6f6a

View file

@ -8,51 +8,51 @@ data:
<a href="/tagged/">Post by tag</a> <a href="/tagged/">Post by tag</a>
{% assign years = "2025, 2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011" | split: ", " %} {% assign years = "2025, 2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011" | split: ", " -%}
{% assign maxcount = 0 %} {% assign maxcount = 0 -%}
{% for year in years -%} {% for year in years -%}
{% assign count = 0 %} {% assign count = 0 -%}
{%- for post in collections.posts.pages %} {%- for post in collections.posts.pages -%}
{%- assign postyear = post.published_date | date: "%Y" %} {%- assign postyear = post.published_date | date: "%Y" -%}
{%- if postyear == year %} {%- if postyear == year -%}
{% assign count = count | plus: 1 %} {% assign count = count | plus: 1 -%}
{% endif %} {% endif -%}
{% endfor %} {% endfor -%}
{% if count > maxcount %} {% if count > maxcount -%}
{% assign maxcount = count %} {% assign maxcount = count -%}
{% endif %} {% endif -%}
{% endfor %} {% endfor -%}
<p>A count of all posts by year — {{ years|size }} years running!</p> <p>A count of all posts by year — {{ years|size }} years running!</p>
<ol class="archive-chart"> <ol class="archive-chart">
{% for year in years -%} {% for year in years -%}
{% assign count = 0 %} {% assign count = 0 -%}
{%- for post in collections.posts.pages %} {%- for post in collections.posts.pages -%}
{%- assign postyear = post.published_date | date: "%Y" %} {%- assign postyear = post.published_date | date: "%Y" -%}
{%- if postyear == year %} {%- if postyear == year -%}
{% assign count = count | plus: 1 %} {% assign count = count | plus: 1 -%}
{% endif %} {% endif -%}
{% endfor %} {% endfor -%}
<li> <li>
<a href="#{{year}}"> <a href="#{{year}}">
<span>{{year}}</span> <span>{{year}}</span>
<span>{{count}}</span> <span>{{count}}</span>
</a> </a>
{% assign u = count | times: 100 %} {% assign u = count | times: 100 -%}
{% assign w = u | divided_by: maxcount %} {% assign w = u | divided_by: maxcount -%}
<span class="archive-chart-bar" style="width:{{w}}%"></span> <span class="archive-chart-bar" style="width:{{w}}%"></span>
</li> </li>
{% endfor %} {% endfor -%}
</ol> </ol>
{% for year in years -%} {% for year in years -%}
<h2 id="{{year}}">{{year}}</h2> <h2 id="{{year}}">{{year}}</h2>
<ul class="posts-list"> <ul class="posts-list">
{%- for post in collections.posts.pages %} {%- for post in collections.posts.pages -%}
{%- assign postyear = post.published_date | date: "%Y" %} {% assign postyear = post.published_date | date: "%Y" -%}
{%- if postyear == year %} {% if postyear == year %}
<li> <li>
<a href="/{{post.permalink }}"> <a href="/{{post.permalink }}">
<span>{{post.title}}</span> <span>{{post.title}}</span>
@ -61,7 +61,7 @@ data:
</span> </span>
</a> </a>
</li> </li>
{%- endif %} {% endif -%}
{%- endfor %} {% endfor -%}
</ul> </ul>
{%- endfor %} {% endfor -%}