This commit is contained in:
2026-08-25 21:42:47 -07:00
parent cfa6c5fabf
commit 5796b1f07c
24 changed files with 585 additions and 50 deletions
+6
View File
@@ -1,2 +1,8 @@
<footer>
<p>Brought to you by the
<a href="/years/2025#team">FediZineFest 2025 team</a>
</p>
<p>Site feedback? Questions?
<a href="mailto:lee.cattarin@gmail.com?subject=fediZineFest">Reach out to Lee</a>
</p>
</footer>
+4 -2
View File
@@ -5,19 +5,20 @@
{% set pageTitle = metadata.title %}
{% endif %}
<title>{{ pageTitle }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!-- Meta -->
<link rel="canonical" href="/" />
<meta name="description" content="{{ metadata.description }}" />
<meta name="robots" content="index,follow" />
<meta property="og:title" content="{{ pageTitle }}" />
<meta property="og:type" content="article" />
<meta property="og:url" content="/" />
<meta property="og:url" content="{{ metadata.url }}{{ page.url }}" />
<meta property="og:description" content="{{ metadata.description }}" />
{#
<link rel="alternate" href="/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<meta property="og:image" content="" />
<meta property="og:image:alt" content="" />
@@ -27,6 +28,7 @@
<!-- CSS -->
<style>{% include "css/main.css" %}</style>
<style>{% include "css/zines.css" %}</style>
<style>{% getBundle "css" %}</style>
{#
+13 -2
View File
@@ -1,4 +1,15 @@
<header>
<nav>
</nav>
<nav aria-label="main navigation">
<a id="skip" href="#main">skip to content</a>
<ul>
{% for entry in collections.all | eleventyNavigation %}
<li>
<a href="{{ entry.url }}" title="{{ entry.title }}"
{% if entry.url == page.url %}aria-current="page"{% endif %}>
{{ entry.title }}
</a>
</li>
{% endfor %}
</ul>
</nav>
</header>
+11
View File
@@ -0,0 +1,11 @@
<ul id="zine-container">
{% for zine in zines %}
<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>
<blockquote>{{ zine.content | safe }}</blockquote>
</li>
{% endfor %}
</ul>