1
0
Fork 0
mirror of https://github.com/GuerillaHQ/now-playing synced 2024-06-27 14:01:35 +00:00
now-playing/layouts/index.html

93 lines
4.1 KiB
HTML
Raw Normal View History

2019-12-03 19:53:14 +00:00
{{ define "metaTitle" }}
2022-04-22 23:23:53 +00:00
{{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" "a") }}
2023-07-24 13:14:51 +00:00
<title>{{ if (not $paginator.HasPrev) }}{{ .Site.Title }} ∴ {{ .Site.Params.author.name }}'s Handpicked Albums Collection{{ else }}{{ .Site.Title }} ∴ Albums (Page {{ $paginator.PageNumber }}) {{ end }}</title>
2023-02-20 01:08:02 +00:00
<meta name="description" content="{{ .Site.Params.description }}">
2023-02-21 21:04:00 +00:00
{{ if (not $paginator.HasPrev) }}
<link rel="preload" href="/images/illustration.svg" as="image" type="image/svg+xml" />
{{ end }}
2019-12-03 19:53:14 +00:00
{{ end }}
2019-11-27 02:56:03 +00:00
{{ define "main" }}
2022-04-22 23:23:53 +00:00
{{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" "a") }}
2019-11-28 01:05:31 +00:00
<main>
2020-08-05 16:46:12 +00:00
{{ if and .IsHome (not $paginator.HasPrev) }}
2019-11-28 01:05:31 +00:00
<div class="home-head">
<div class="container">
<div class="home-head__container">
2023-02-21 18:09:08 +00:00
<h1 class="home-head__title">Handpicked Albums</h1>
<p class="home-head__subtitle">A collection by {{ .Site.Params.author.name }}</p>
2019-11-28 01:05:31 +00:00
</div>
2019-11-27 17:06:26 +00:00
</div>
</div>
2019-11-28 01:05:31 +00:00
{{ else }}
<div class="catalog-head">
<div class="container">
<h1 class="catalog-head__title">
<span class="catalog-head__title--primary">Albums</span>
<span class="catalog-head__title--secondary">Page {{ $paginator.PageNumber }}</span>
</h1>
</div>
2019-11-27 17:06:26 +00:00
</div>
2019-11-28 01:05:31 +00:00
{{ end }}
2019-11-27 02:56:03 +00:00
2019-11-27 17:06:26 +00:00
<!-- Album list -->
<div class="content">
<div class="container">
2019-11-28 01:05:31 +00:00
<div class="grid grid-catalog">
{{ range $albumIndex, $album := sort $paginator.Pages "Date" "desc" }}
2019-11-28 01:05:31 +00:00
{{ $original := resources.Get .Params.cover }}
2019-12-03 23:41:09 +00:00
{{ $originalPermalink := $original.Permalink }}
2022-02-10 22:26:56 +00:00
{{ $cover := $original.Resize "x320 webp" }}
{{ $coverBackup := $original.Resize "x320 jpeg q69" }}
2022-02-10 22:26:56 +00:00
{{ $cover2x := $original.Resize "x640 webp" }}
{{ $cover2xBackup := $original.Resize "x640 jpeg q69" }}
2022-02-10 22:26:56 +00:00
{{ $placeholder := $cover.Resize "x1 png" }}
2019-11-28 01:05:31 +00:00
<div class="catalog-item">
<a class="catalog-item__content" href="{{ .Permalink }}">
<h2 class="catalog-item__album" style="view-transition-name: album_title_{{ .File.BaseFileName }};">{{ .Title }}</h2>
<div class="catalog-item__artist" style="view-transition-name: album_artist_{{ .File.BaseFileName }};">by {{ .Params.artist }}</div>
<picture class="catalog-item__visual">
<source srcset="{{ $cover.Permalink }} 1x, {{ $cover2x.Permalink }} 2x" type="image/webp">
<source srcset="{{ $coverBackup.Permalink }} 1x, {{ $cover2xBackup.Permalink }} 2x" type="image/jpeg">
2019-11-28 01:05:31 +00:00
<img
2019-11-28 01:05:31 +00:00
width="320"
height="320"
style="
background-image: url(data:{{ $placeholder.MediaType }};base64,{{ $placeholder.Content | base64Encode }});
view-transition-name: album_cover_{{ .File.BaseFileName }};
"
src="{{ $coverBackup.Permalink }}"
2019-11-28 01:05:31 +00:00
srcset="{{ $cover.Permalink }} 1x, {{ $cover2x.Permalink }} 2x"
{{ if ( gt $albumIndex 3) }}
2020-08-05 16:37:31 +00:00
loading="lazy"
decoding="async"
{{ end }}
2022-04-23 00:03:45 +00:00
alt="{{ .Title }} album's cover"
title="{{ .Title }} album's cover"
2019-11-28 01:05:31 +00:00
>
</picture>
2019-11-28 01:05:31 +00:00
</a>
</div>
{{ end }}
</div>
2019-11-27 17:06:26 +00:00
{{ partial "pagination" . }}
</div>
</div>
<!-- About -->
{{ if and (not $paginator.HasPrev) (eq .Site.Params.author.name .Site.Params.creator.name) }}
2019-11-28 01:05:31 +00:00
<section class="home-about">
<div class="container">
<h2 class="visually-hidden">About</h2>
<p>At {{ .Site.Params.author.name }} we love music, I mean we <strong class="semibold">LOVE</strong> music! And we also LOVE great album covers. So we decided to make a place where we can showcase albums dear to us.</p>
2019-11-28 01:05:31 +00:00
<p>
2023-02-20 01:08:02 +00:00
This is <strong class="semibold">Now Playing</strong>, our little favorite albums collection.
2019-11-28 01:05:31 +00:00
</p>
</div>
</section>
{{ end }}
2019-11-27 17:06:26 +00:00
</main>
2020-03-23 11:20:29 +00:00
2019-11-27 02:56:03 +00:00
{{ end }}