1

Prep for importing RetryLife albums
All checks were successful
Deploy ewpratten.com / Deploy to Production (push) Successful in 2m13s

This commit is contained in:
Evan Pratten 2025-03-29 17:10:01 -04:00
parent 09aeac2a5d
commit 11f2fc623f
8 changed files with 21 additions and 5 deletions

View File

@ -2,6 +2,7 @@
title: Radioactive
layout: music
date: 2017-02-04
group: personal
cover_image: /assets/music/radioactive/cover.jpg
links:
"Spotify": https://open.spotify.com/album/44mayKI3HsGnNDr9A1yDgF

View File

@ -2,6 +2,7 @@
title: Scale Hop
layout: music
date: 2022-01-06
group: personal
cover_image: /assets/music/scale-hop/cover.jpg
links:
"Spotify": https://open.spotify.com/album/6tpUJQlZ1I7bWK4X4pwiOj

View File

@ -2,6 +2,7 @@
title: Space & Time, Vol. 1
layout: music
date: 2022-05-07
group: personal
cover_image: /assets/music/space-time-v1/cover.jpg
links:
"Spotify": https://open.spotify.com/album/718OAeNsyhO1znebsXVSdf

View File

@ -2,6 +2,7 @@
title: Summer Tracks.
layout: music
date: 2022-09-10
group: personal
cover_image: /assets/music/summer-tracks/cover.jpg
links:
"Spotify": https://open.spotify.com/album/3bcakhzNwyK40K0TowcT0m

View File

@ -2,6 +2,7 @@
title: Channels
layout: music
date: 2022-11-25
group: personal
cover_image: /assets/music/channels/cover.jpg
links:
"Spotify": https://open.spotify.com/album/25xzDOHs8fN5WQUSnww7kj

View File

@ -2,6 +2,7 @@
title: Spring Tracks.
layout: music
date: 2023-05-31
group: personal
cover_image: /assets/music/spring-tracks/cover.jpg
links:
"Spotify": https://open.spotify.com/album/4egrxAZmNgww1ocu8oYTqC

View File

@ -33,12 +33,20 @@ custom_css: |
</p>
<hr>
{% assign grouped_releases = site.music | group_by_exp: "release", "release.group" %}
{% for group in grouped_releases %}
<h2 style="border: none; text-align: center;">
{% if group.name == "personal" %}
Music released as <span style="display: inline-block;">Evan Pratten</span></h2>
{% else if group.name == "retrylife" %}
Music released as a member of RetryLife
{% endif %}
<div class="discography">
{% assign music_sorted = site.music | sort: "date" | reverse %}
{% for release in music_sorted %}
{% assign items_sorted = group.items | sort: "date" | reverse %}
{% for release in items_sorted %}
<div class="discography-entry">
<a href="{{ release.url | downcase }}">
<img src="{{ release.cover_image }}" alt="Cover art for {{ release.title }}" style="width: 100%;">
<img src="{{ release.cover_image }}" alt="Cover art for {{ release.title }}" style="width: 100%;" loading="lazy">
</a>
<div style="display: flex; justify-content: space-between; font-size: 1.25em;">
<span>{{ release.title }}</span>
@ -47,3 +55,4 @@ custom_css: |
</div>
{% endfor %}
</div>
{% endfor %}

View File

@ -27,7 +27,8 @@ custom_css: |
{% for photo in photos_sorted %}
<div class="photo-feed-entry">
<a href="{{ photo.url | downcase }}">
<img src="/assets/photography/{{ photo.file }}" alt="A photo titled: {{ photo.title }}" style="width: 100%;">
<img src="/assets/photography/{{ photo.file }}" alt="A photo titled: {{ photo.title }}" style="width: 100%;"
loading="lazy">
</a>
<div style="display: flex; justify-content: space-between; font-size: 1.25em;">
<span>{{ photo.title }}</span>