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 title: Radioactive
layout: music layout: music
date: 2017-02-04 date: 2017-02-04
group: personal
cover_image: /assets/music/radioactive/cover.jpg cover_image: /assets/music/radioactive/cover.jpg
links: links:
"Spotify": https://open.spotify.com/album/44mayKI3HsGnNDr9A1yDgF "Spotify": https://open.spotify.com/album/44mayKI3HsGnNDr9A1yDgF

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -33,12 +33,20 @@ custom_css: |
</p> </p>
<hr> <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"> <div class="discography">
{% assign music_sorted = site.music | sort: "date" | reverse %} {% assign items_sorted = group.items | sort: "date" | reverse %}
{% for release in music_sorted %} {% for release in items_sorted %}
<div class="discography-entry"> <div class="discography-entry">
<a href="{{ release.url | downcase }}"> <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> </a>
<div style="display: flex; justify-content: space-between; font-size: 1.25em;"> <div style="display: flex; justify-content: space-between; font-size: 1.25em;">
<span>{{ release.title }}</span> <span>{{ release.title }}</span>
@ -46,4 +54,5 @@ custom_css: |
</div> </div>
</div> </div>
{% endfor %} {% endfor %}
</div> </div>
{% endfor %}

View File

@ -27,7 +27,8 @@ custom_css: |
{% for photo in photos_sorted %} {% for photo in photos_sorted %}
<div class="photo-feed-entry"> <div class="photo-feed-entry">
<a href="{{ photo.url | downcase }}"> <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> </a>
<div style="display: flex; justify-content: space-between; font-size: 1.25em;"> <div style="display: flex; justify-content: space-between; font-size: 1.25em;">
<span>{{ photo.title }}</span> <span>{{ photo.title }}</span>