1
ewpratten.com/templates/components/site-timeline.html
2022-12-18 14:49:55 -05:00

68 lines
2.3 KiB
HTML

{% block component_styles %}
{{ super() }}
<link rel="stylesheet" href="/styles/components/site-timeline.css">
<link rel="stylesheet" href="/styles/icons.css">
{% endblock component_styles %}
{# Build a list of pages to work with #}
{# {% set all_pages = [] %}
{% set all_pages = all_pages + %} #}
{% set blog_section = get_section(path="blog/_index.md") %}
{% set music_ewp_section = get_section(path="music/evan-pratten/_index.md") %}
{% set music_rtl_section = get_section(path="music/retrylife/_index.md") %}
{% set photo_section = get_section(path="photography/_index.md") %}
{# Combine pages #}
{% set all_pages = [] %}
{% set all_pages = all_pages | concat(with=blog_section.pages) %}
{% set all_pages = all_pages | concat(with=music_ewp_section.pages) %}
{% set all_pages = all_pages | concat(with=music_rtl_section.pages) %}
{% set all_pages = all_pages | concat(with=photo_section.pages) %}
{# Sort and group #}
{% set all_pages = all_pages | sort(attribute="date") | reverse %}
{% set map = all_pages | group_by(attribute="year") %}
{% set_global years = [] %}
{% for year, ignored in map %}
{% set_global years = years | concat(with=year) %}
{% endfor %}
{# Iterate all pages #}
{% for year in years %}
{% set pages = map[year] %}
{# Per-year heading #}
<h2>{{year}}</h2>
<ul class="timeline-list">
{% for page in pages %}
{% if not page.draft %}
<li class="timeline-item">
<div class="timeline-datestamp">
{# Informational icon #}
{% if page.extra.icon %}
<i class="{{page.extra.icon}}"></i>
{% else %}
<i class="las la-book"></i>
{% endif %}
{# Datestamp #}
<span class="gray monospace">{{page.date}}:</span>
</div>
{# Title #}
<br class="mobile-linebreak" style="display: none;">
<a href="{{page.path}}" class="timeline-title">{{page.title}}</a>
<br>
{# Additonal info #}
{% if page.extra.excerpt %}
<blockquote class="timeline-description">{{page.extra.excerpt}}</blockquote>
{% elif page.description %}
<blockquote class="timeline-description">{{page.description}}</blockquote>
{% endif %}
{# <hr> #}
</li>
{% endif %}
{% endfor %}
</ul>
{% endfor %}