2019-12-03 19:53:14 +00:00
{{ define "metaTitle" }}
2019-12-03 21:03:44 +00:00
{{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" "musics") }}
2019-12-03 19:53:14 +00:00
< title > {{ if (not $paginator.HasPrev) }}{{ .Site.Title }} ∴ Handpicked Albums by the Glitch Family{{ else }}{{ .Site.Title }} ∴ Albums (Page {{ $paginator.PageNumber }}) {{ end }}< / title >
2019-12-03 21:31:16 +00:00
< meta name = "description" content = "Handpicked Albums by the Glitch Family" >
2019-12-03 19:53:14 +00:00
{{ end }}
2019-11-27 02:56:03 +00:00
{{ define "main" }}
2019-12-03 21:03:44 +00:00
{{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" "musics") }}
2019-11-28 01:05:31 +00:00
< main >
{{ if .IsHome | (not $paginator.HasPrev) }}
< div class = "home-head" >
< div class = "container" >
< div class = "home-head__container" >
< h1 class = "home-head__title" data-text = "Handpicked Albums" >
< span class = "glitch" data-text = "Handpicked" > Handpicked< / span > < span class = "glitch" data-text = "Albums" > Albums< / span >
< / h1 >
< p class = "home-head__subtitle" > by the Glitch Family< / p >
< / 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 sort $paginator.Pages "Date" "desc" }}
{{ $original := resources.Get .Params.cover }}
2019-12-03 23:41:09 +00:00
{{ $originalPermalink := $original.Permalink }}
2019-11-28 01:05:31 +00:00
{{ $cover := $original.Resize "x320" }}
{{ $cover2x := $original.Resize "x640" }}
{{ $placeholder := $cover.Resize "x1" }}
< div class = "catalog-item" >
< a class = "catalog-item__content" href = "{{ .Permalink }}" >
< h2 class = "catalog-item__album" > {{ .Title }}< / h2 >
< div class = "catalog-item__artist" > by {{ .Params.artist }}< / div >
< img
class="catalog-item__visual"
width="320"
height="320"
style="background-image: url(data:{{ $placeholder.MediaType }};base64,{{ $placeholder.Content | base64Encode }});"
src="{{ $cover.Permalink }}"
srcset="{{ $cover.Permalink }} 1x, {{ $cover2x.Permalink }} 2x"
alt="{{ .Title }} album's cover'"
title="{{ .Title }} album's cover'"
>
< / a >
< / div >
{{ end }}
< / div >
2019-11-27 17:06:26 +00:00
{{ partial "pagination" . }}
< / div >
< / div >
<!-- About -->
2019-11-28 01:05:31 +00:00
{{ if not $paginator.HasPrev }}
< section class = "home-about" >
< div class = "container" >
< h2 class = "visually-hidden" > About< / h2 >
< p > At Glitch Family we love music, I mean we LOVE music! And we also LOVE great album covers. So we decided to make a place where we can showcase albums that are dear to us.< / p >
< p >
This is Now Playing.< br >
A Glitch Family’ s project.
< / p >
< / div >
< / section >
{{ end }}
2019-11-27 17:06:26 +00:00
< / main >
2019-11-27 02:56:03 +00:00
{{ end }}