38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<section id="now">
|
||
<div class="section-headers" style="background-image: url(/2025/images/now-banner.svg);">
|
||
<h2>NOW</h2>
|
||
<h4>𝖂𝖊𝖑𝖈𝖔𝖒𝖊, 𝖘𝖕𝖆𝖈𝖊-𝖙𝖎𝖒𝖊 𝖙𝖗𝖆𝖛𝖊𝖑𝖊𝖗</h4>
|
||
<p>Here's what's going down! Never been here before? <a href="https://www.basspistol.com/index2024.html#read">This page</a> might answer some of your questions. </p>
|
||
</div>
|
||
|
||
{{ range first 2 (where .Site.RegularPages "Type" "news") }}
|
||
|
||
<div class="border now" style="background-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url({{ .Params.image.url }});">
|
||
|
||
<figure>
|
||
<img src="{{ .Params.image.url }}" alt="{{ .Params.image.alt }}" />
|
||
<figcaption>
|
||
<p><b>Artwork:</b> <a href="{{ .Params.image.credits.url }}" target="_blank">{{ .Params.image.credits.name }}</a> ({{ .Params.image.license }})</p>
|
||
{{ if eq .Params.release true }}
|
||
<p><b>Catalogue:</b> {{ .Params.catalogue }}</p>
|
||
<p><b>Label:</b> {{ .Params.recordlabel | markdownify }}</p>
|
||
<p><b>License:</b> {{ .Params.license }}</p>
|
||
<p><b>Released:</b> {{ .Params.date | dateFormat "2006-01-02" }}
|
||
{{ end }}
|
||
</figcaption>
|
||
</figure>
|
||
|
||
<div class="news">
|
||
<h4>{{ .Title }}</h4>
|
||
{{ .Content | markdownify }}
|
||
|
||
<a class="button" href="{{ .Params.cta.url }}" target="_blank">{{ .Params.cta.label }}</a>
|
||
|
||
</div>
|
||
</div>
|
||
{{ end }}
|
||
<article class="border now">
|
||
{{ partial "body/newsletter.html" . }}
|
||
</article>
|
||
<div class="section-footers"></div>
|
||
</section>
|