generated from inherentlee/11ty
I won't even try to chunk this up
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<footer>
|
||||
<p>Brought to you by the
|
||||
<a href="/years/2025#team">FediZineFest 2025 team</a>
|
||||
<p>
|
||||
Read the <a href="/attribution">site attribution</a>
|
||||
</p>
|
||||
<p>Site feedback? Questions?
|
||||
<a href="mailto:lee.cattarin@gmail.com?subject=fediZineFest">Reach out to Lee</a>
|
||||
|
||||
+7
-8
@@ -18,11 +18,10 @@
|
||||
<meta property="og:url" content="{{ metadata.url }}{{ page.url }}" />
|
||||
<meta property="og:description" content="{{ metadata.description }}" />
|
||||
|
||||
{#
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
<meta property="og:image" content="" />
|
||||
<meta property="og:image:alt" content="" />
|
||||
#}
|
||||
<meta property="og:image" content="/img/2025-logo.png" />
|
||||
<meta property="og:image:alt"
|
||||
content="a logo in dark purple and golden yellow. it looks sorta like a folded map, or like a single piece of printer paper that's been folded and cut into the format needed for an 8-page zine. the 8 panels read FEDI ZINE. next to this, a blue and green folded 8-page zine reads 'fest 2025'" />
|
||||
|
||||
<meta name="generator" content="{{ eleventy.generator }}">
|
||||
|
||||
@@ -31,8 +30,8 @@
|
||||
<style>{% include "css/zines.css" %}</style>
|
||||
<style>{% getBundle "css" %}</style>
|
||||
|
||||
{#
|
||||
<!-- JS -->
|
||||
<script type="module">{% getBundle "js" %}</script>
|
||||
#}
|
||||
{# Fonts #}
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
+23
-5
@@ -1,10 +1,28 @@
|
||||
<ul id="zine-container">
|
||||
{% for zine in zines %}
|
||||
{% for zine in zines | sortAlphabeticallyByArtist %}
|
||||
<li>
|
||||
<h2><a href="{{ zine.data.website }}">{{ zine.data.artist }}</a></h2>
|
||||
<p>made a {{ zine.data.format }} zine called</p>
|
||||
<h3>{{ zine.data.title }}</h3>
|
||||
<p>and the original blurb was</p>
|
||||
{% if allyears %}
|
||||
<p>In {{ zine | getYear }},</p>
|
||||
{% endif %}
|
||||
<h2>
|
||||
{% if zine.data.site %}
|
||||
<a href="{{ zine.data.site }}">{{ zine.data.artist }}</a>
|
||||
{% else %}
|
||||
{{ zine.data.artist }}
|
||||
{% endif %}
|
||||
</h2>
|
||||
|
||||
{% if zine.data.titles.length == 1 %}
|
||||
<p>made a {{ zine.data.format }} zine called...</p>
|
||||
<h3>{{ zine.data.titles }}</h3>
|
||||
{% else %}
|
||||
<p>made {{ zine.data.format }} zines called...</p>
|
||||
{% for title in zine.data.titles %}
|
||||
<h3>{{ title }}</h3>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
<p>and the original blurb was...</p>
|
||||
<blockquote>{{ zine.content | safe }}</blockquote>
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
||||
Reference in New Issue
Block a user