fix: revert heavy pages

This commit is contained in:
Cory Dransfeldt 2024-04-16 17:08:26 -07:00
parent 9172e6c1bf
commit ed6f1018d5
No known key found for this signature in database
4 changed files with 9 additions and 86 deletions

File diff suppressed because one or more lines are too long

View file

@ -7,12 +7,10 @@ layout: default
<script>{{ js }}</script>
{{ content }}
<div class="now-header-wrapper">
<a class="linked-header" href="/artists">
<h2 id="artists" class="now-header flex-centered">
{% tablericon "microphone-2" "Artists" %}
Artists
</h2>
</a>
<h2 id="artists" class="now-header flex-centered">
{% tablericon "microphone-2" "Artists" %}
Artists
</h2>
<div class="now-header-buttons client-side">
<button class="small active" data-toggle="artists-window">This week</button>
<button class="small secondary" data-toggle="artists-month">This month</button>
@ -33,12 +31,10 @@ layout: default
{% render "partials/now/media-grid.liquid", data:musicCharts.year.artists, shape: "square", count: 8 %}
</div>
<div class="now-header-wrapper">
<a class="linked-header" href="/albums">
<h2 id="albums" class="now-header flex-centered">
{% tablericon "vinyl" "Albums" %}
Albums
</h2>
</a>
<h2 id="albums" class="now-header flex-centered">
{% tablericon "vinyl" "Albums" %}
Albums
</h2>
<div class="now-header-buttons client-side">
<button class="small active" data-toggle="albums-window">This week</button>
<button class="small secondary" data-toggle="albums-month">This month</button>

View file

@ -1,37 +0,0 @@
---
title: Albums
layout: default
description: "See my top albums."
pagination:
data: musicCharts.year.albums
size: 30
---
<a class="linked-header" href="/now#albums">
<h2 class="page-header flex-centered">
{% tablericon "vinyl" "Albums" %}
{{ title }}
</h2>
</a>
<p>These are my top albums for the past year or so — running backwards from when my site rebuilt itself (likely in the past hour or so).</p>
<div class="music-chart grid">
{% for item in pagination.items %}
{% capture alt %}{{ item.plays }} of {{ item.artist }}{% endcapture %}
<div class="item">
<div class="meta">
{% image item.image, alt, '', 'lazy' %}
<div class="meta-text">
<div class="title">
<a href="{{ item.url }}">{{ item.title }}</a>
</div>
<div class="subtext">
<p>{{ item.artist }}</p>
<p>{{ item.plays }} plays</p>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
{% render "partials/paginator.liquid", pagination:pagination %}

View file

@ -1,36 +0,0 @@
---
title: Artists
layout: default
description: "See my top artists."
pagination:
data: musicCharts.year.artists
size: 30
---
<a class="linked-header" href="/now#artists">
<h2 class="page-header flex-centered">
{% tablericon "microphone-2" "Artists" %}
{{ title }}
</h2>
</a>
<p>These are my top artists for the past year or so — running backwards from when my site rebuilt itself (likely in the past hour or so).</p>
<div class="music-chart grid">
{% for item in pagination.items %}
{% capture alt %}{{ item.plays }} of {{ item.artist }}{% endcapture %}
<div class="item">
<div class="meta">
{% image item.image, alt, '', 'lazy' %}
<div class="meta-text">
<div class="title">
<a href="{{ item.url }}">{{ item.title }}</a>
</div>
<div class="subtext">
{{ item.plays }} plays
</div>
</div>
</div>
</div>
{% endfor %}
</div>
{% render "partials/paginator.liquid", pagination:pagination %}