I won't even try to chunk this up

This commit is contained in:
2026-08-26 13:46:34 -07:00
parent 5796b1f07c
commit 4bf83db4a7
68 changed files with 768 additions and 71 deletions
+11
View File
@@ -6,6 +6,12 @@ export default function (eleventyConfig) {
return Object.keys(target); return Object.keys(target);
}); });
eleventyConfig.addFilter("getYear", (target) => {
if (target.data.tags.includes("2024")) return "2024";
if (target.data.tags.includes("2025")) return "2025";
if (target.data.tags.includes("2026-2027")) return "2026-2027";
});
/* Return n elements from a list */ /* Return n elements from a list */
eleventyConfig.addFilter("head", (collection = [], n) => { eleventyConfig.addFilter("head", (collection = [], n) => {
if (!Array.isArray(collection) || collection.length === 0) { if (!Array.isArray(collection) || collection.length === 0) {
@@ -56,4 +62,9 @@ export default function (eleventyConfig) {
eleventyConfig.addFilter("sortAlphabetically", (strings) => eleventyConfig.addFilter("sortAlphabetically", (strings) =>
(strings || []).sort((b, a) => b.localeCompare(a)), (strings || []).sort((b, a) => b.localeCompare(a)),
); );
eleventyConfig.addFilter("sortAlphabeticallyByArtist", (collection) => {
collection.sort((b, a) => b.data.artist.localeCompare(a.data.artist));
return collection;
});
} }
+2 -2
View File
@@ -1,6 +1,6 @@
<footer> <footer>
<p>Brought to you by the <p>
<a href="/years/2025#team">FediZineFest 2025 team</a> Read the <a href="/attribution">site attribution</a>
</p> </p>
<p>Site feedback? Questions? <p>Site feedback? Questions?
<a href="mailto:lee.cattarin@gmail.com?subject=fediZineFest">Reach out to Lee</a> <a href="mailto:lee.cattarin@gmail.com?subject=fediZineFest">Reach out to Lee</a>
+7 -8
View File
@@ -18,11 +18,10 @@
<meta property="og:url" content="{{ metadata.url }}{{ page.url }}" /> <meta property="og:url" content="{{ metadata.url }}{{ page.url }}" />
<meta property="og:description" content="{{ metadata.description }}" /> <meta property="og:description" content="{{ metadata.description }}" />
{#
<link rel="icon" type="image/x-icon" href="/favicon.ico"> <link rel="icon" type="image/x-icon" href="/favicon.ico">
<meta property="og:image" content="" /> <meta property="og:image" content="/img/2025-logo.png" />
<meta property="og:image:alt" content="" /> <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 }}"> <meta name="generator" content="{{ eleventy.generator }}">
@@ -31,8 +30,8 @@
<style>{% include "css/zines.css" %}</style> <style>{% include "css/zines.css" %}</style>
<style>{% getBundle "css" %}</style> <style>{% getBundle "css" %}</style>
{# {# Fonts #}
<!-- JS --> <link rel="preconnect" href="https://fonts.googleapis.com">
<script type="module">{% getBundle "js" %}</script> <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> </head>
+23 -5
View File
@@ -1,10 +1,28 @@
<ul id="zine-container"> <ul id="zine-container">
{% for zine in zines %} {% for zine in zines | sortAlphabeticallyByArtist %}
<li> <li>
<h2><a href="{{ zine.data.website }}">{{ zine.data.artist }}</a></h2> {% if allyears %}
<p>made a {{ zine.data.format }} zine called</p> <p>In {{ zine | getYear }},</p>
<h3>{{ zine.data.title }}</h3> {% endif %}
<p>and the original blurb was</p> <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> <blockquote>{{ zine.content | safe }}</blockquote>
</li> </li>
{% endfor %} {% endfor %}
+17 -15
View File
@@ -11,8 +11,10 @@
--color-header-dark: #ff9b37; --color-header-dark: #ff9b37;
--color-warn-dark: #540033; --color-warn-dark: #540033;
--color-text-main: #640054; --color-bg: light-dark(var(--color-bg-light), var(--color-bg-dark));
--color-text-header: #185370; --color-text: light-dark(var(--color-text-light), var(--color-text-dark));
--color-header: light-dark(var(--color-header-light), var(--color-header-dark));
--color-warn: light-dark(var(--color-warn-light), var(--color-warn-dark));
} }
/* numbered components are from https://www.joshwcomeau.com/css/custom-css-reset/ */ /* numbered components are from https://www.joshwcomeau.com/css/custom-css-reset/ */
@@ -25,9 +27,9 @@
} }
*:focus-visible { *:focus-visible {
outline: .2rem solid light-dark(var(--color-header-light), var(--color-header-dark)); outline: .2rem solid var(--color-header);
outline-offset: .15rem; outline-offset: .15rem;
background-color: light-dark(var(--color-header-light), var(--color-header-dark)); background-color: var(--color-header);
} }
html { html {
@@ -47,9 +49,9 @@ html {
body { body {
line-height: 1.5; /* 4. Increase line-height */ line-height: 1.5; /* 4. Increase line-height */
-webkit-font-smoothing: antialiased; /* 5. Improve text rendering */ -webkit-font-smoothing: antialiased; /* 5. Improve text rendering */
font-family: sans-serif; font-family: "Atkinson Hyperlegible Next", sans-serif;
background-color: light-dark(var(--color-bg-light), var(--color-bg-dark)); background-color: var(--color-bg);
color: light-dark(var(--color-text-light), var(--color-text-dark)); color: var(--color-text);
display: grid; display: grid;
grid-template-rows: auto 1fr auto; grid-template-rows: auto 1fr auto;
min-height: 100%; min-height: 100%;
@@ -89,7 +91,7 @@ p, h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
text-wrap: balance; /* 9. Improve line wrapping */ text-wrap: balance; /* 9. Improve line wrapping */
color: light-dark(var(--color-header-light), var(--color-header-dark)); color: var(--color-header);
font-weight: bold; font-weight: bold;
line-height: 105%; line-height: 105%;
} }
@@ -136,8 +138,8 @@ ul ul {
a:link, a:link,
a:visited { a:visited {
background-color: light-dark(var(--color-text-light), var(--color-text-dark)); background-color: var(--color-text);
color: light-dark(var(--color-bg-light), var(--color-bg-dark)); color: var(--color-bg);
font-weight: bold; font-weight: bold;
padding: 0 .2rem; padding: 0 .2rem;
text-decoration: none; text-decoration: none;
@@ -147,17 +149,17 @@ a:visited {
/* makes the years page prettier */ /* makes the years page prettier */
h3 a:link, h3 a:link,
h3 a:visited { h3 a:visited {
background-color: light-dark(var(--color-header-light), var(--color-header-dark)); background-color: var(--color-header);
} }
h3 *:focus-visible { h3 *:focus-visible {
outline: .2rem solid light-dark(var(--color-text-light), var(--color-text-dark)); outline: .2rem solid var(--color-text);
background-color: light-dark(var(--color-text-light), var(--color-text-dark)); background-color: var(--color-text);
} }
/* Header nav */ /* Header nav */
nav { nav {
border-bottom: .25rem solid light-dark(var(--color-header-light), var(--color-header-dark)); border-bottom: .25rem solid var(--color-header);
font-size: 1.1rem; font-size: 1.1rem;
} }
@@ -193,7 +195,7 @@ footer {
padding: 1rem .5rem; padding: 1rem .5rem;
width: 100%; width: 100%;
flex-wrap: wrap; flex-wrap: wrap;
border-top: .25rem solid light-dark(var(--color-header-light), var(--color-header-dark)); border-top: .25rem solid var(--color-header);
} }
footer p { footer p {
+58
View File
@@ -0,0 +1,58 @@
.color {
--color-bg-light-2025: #f0f0f0;
--color-text-light-2025: #640054;
--color-header-light-2025: #185370;
--color-warn-light-2025: #fbcc0a;
--color-bg-dark-2025: #1f1f1f;
--color-text-dark-2025: #91c73b;
--color-header-dark-2025: #ff9b37;
--color-warn-dark-2025: #540033;
border-radius: .5rem;
padding: .5rem;
text-align: center;
font-weight: bold;
}
@media (prefers-color-scheme: light) {
.color {
border: .1rem solid var(--color-bg-dark);
}
}
@media (prefers-color-scheme: dark) {
.color {
border: .1rem solid var(--color-bg-light);
}
}
#bg-light-2025,
#warn-light-2025 {
color: var(--color-text-light-2025);
}
#text-light-2025,
#header-light-2025 {
color: var(--color-bg-light-2025);
}
#bg-dark-2025,
#warn-dark-2025 {
color: var(--color-text-dark-2025);
}
#text-dark-2025,
#header-dark-2025 {
color: var(--color-bg-dark-2025);
}
#bg-light-2025 { background-color: var(--color-bg-light-2025); }
#text-light-2025 { background-color: var(--color-text-light-2025); }
#header-light-2025 { background-color: var(--color-header-light-2025); }
#warn-light-2025 { background-color: var(--color-warn-light-2025); }
#bg-dark-2025 { background-color: var(--color-bg-dark-2025); }
#text-dark-2025 { background-color: var(--color-text-dark-2025); }
#header-dark-2025 { background-color: var(--color-header-dark-2025); }
#warn-dark-2025 { background-color: var(--color-warn-dark-2025); }
+4 -4
View File
@@ -18,13 +18,13 @@
} }
#zine-container h2 a { #zine-container h2 a {
background-color: light-dark(var(--color-header-light), var(--color-header-dark)); background-color: var(--color-header);
line-height: 135%; line-height: 135%;
} }
#zine-container h3 { #zine-container h3 {
background-color: light-dark(var(--color-warn-light), var(--color-warn-dark)); background-color: var(--color-warn);
color: light-dark(var(--color-text-light), var(--color-text-dark)); color: var(--color-text);
border-radius: 3px; border-radius: 3px;
padding: 0 .2rem; padding: 0 .2rem;
text-align: right; text-align: right;
@@ -34,5 +34,5 @@
#zine-container blockquote { #zine-container blockquote {
margin: 0; margin: 0;
color: light-dark(var(--color-header-light), var(--color-header-dark)); color: var(--color-header);
} }
+4
View File
@@ -1,3 +1,4 @@
import { IdAttributePlugin } from "@11ty/eleventy";
import { attrs } from "@mdit/plugin-attrs"; import { attrs } from "@mdit/plugin-attrs";
import { eleventyImageTransformPlugin } from "@11ty/eleventy-img"; import { eleventyImageTransformPlugin } from "@11ty/eleventy-img";
import eleventyNavigationPlugin from "@11ty/eleventy-navigation"; import eleventyNavigationPlugin from "@11ty/eleventy-navigation";
@@ -44,6 +45,9 @@ export default async function (eleventyConfig) {
/* Navigation */ /* Navigation */
eleventyConfig.addPlugin(eleventyNavigationPlugin); eleventyConfig.addPlugin(eleventyNavigationPlugin);
/* `id` attributes */
eleventyConfig.addPlugin(IdAttributePlugin);
/* All filters from _config/filters.js */ /* All filters from _config/filters.js */
eleventyConfig.addPlugin(pluginFilters); eleventyConfig.addPlugin(pluginFilters);
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

+13
View File
@@ -0,0 +1,13 @@
---
title: Attribution
---
FediZineFest is brought to you by the work of each year's team:
[2024 team](/years/2024#team) | [2025 team](/years/2025#team) | [2026-2027 team](/years/2026-2027#team)
...as well as our wonderful artists and backers.
This website is built with [{{ eleventy.generator }}](https://www.11ty.dev/) and hosted by [heckin' technology](https://heckin.technology/). It's been hand-coded from the ground up [without the use of generative AI](https://declare-ai.org/1.0.0/none.html).
The font is [Atkinson Hyperlegible Next](https://brailleinstitute.org/freefont), specifically designed for low-vision readers to improve character recognition.
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

+10 -33
View File
@@ -13,43 +13,14 @@ A zine sharing and distribution project for the fediverse.
## Who ## Who
### Artists (cap of 20) - **Artists** provide physical and/or digital zines; receive payment and physical and/or digital zines.
- **Backers** Provide payment; receive physical and/or digital zines.
Provide physical and/or digital zines; receive payment and physical and/or digital zines. See ["Who" on the 2026-2027 guidelines page](/years/2026-2027/guidelines#who) for more about participation caps and the waitlist.
In 2025, we tested an artist waitlist. Additional artists could be added to the pool as funds allow and to cover for drop-outs. We'll do this again for the 26/27 run.
### Backers (cap of 20 for physical zines; no cap for digital)
Provide payment; receive physical and/or digital zines.
## When ## When
2026/2027 dates yet to be determined. Deadline structure as follows: 2026-2027 dates yet to be determined. See ["When" on the 2026-2027 guidelines page](/years/2026-2027/guidelines#when) for deadline structure.
### Deadline 0
Artist sign-up closes.
### Deadline 1 (deadline 0 + 2 weeks)
Backer sign-up closes. Artists are informed of the number of physical zines needed.
### Deadline 2 (deadline 1 + 10 weeks)
Art submission deadline. Digital zines are submitted to digital drive; physical zines are in the mail.
### Deadline 3 (deadline 2 + 4 weeks)
Physical zines arrive at distributor (Lee).
### Deadline 4 (deadline 3 + 4 weeks)
Physical zines packaged and ready for shipment. Digital zines are organized and ready to share.
### Deadline 5 (deadline 4 + 4 weeks)
Physical zines arrive at recipients. Digital zines shared.
## Where ## Where
@@ -58,3 +29,9 @@ Anywhere that can ship to/from the US.
## Why ## Why
To bring folks together and share art. To bring folks together and share art.
## More questions?
**Artists:** read the [2026-2027 artist information](/years/2026-2027/guidelines#artist-information) for information about art restrictions and payment.
**Backers:** read the [2026-2027 backer information](/years/2026-2027/guidelines#backer-information) for information about how to purchase zine bundles.
+21
View File
@@ -0,0 +1,21 @@
---
title: Palette
---
{% css %}{% include "css/palette.css" %}{% endcss %}
## 2025
### Light
<p class="color" id="bg-light-2025">#f0f0f0</p>
<p class="color" id="text-light-2025">#640054</p>
<p class="color" id="header-light-2025">#185370</p>
<p class="color" id="warn-light-2025">#fbcc0a</p>
### Dark
<p class="color" id="bg-dark-2025">#1f1f1f</p>
<p class="color" id="text-dark-2025">#91c73b</p>
<p class="color" id="header-dark-2025">#ff9b37</p>
<p class="color" id="warn-dark-2025">#540033</p>
+1 -1
View File
@@ -5,7 +5,7 @@ eleventyNavigation:
title: Get Involved title: Get Involved
--- ---
## Interest signups for 2026-2027 ## Interest in 2026-2027
Sign up to [indicate interest in FediZineFest 2026/2027 as an artist, backer, or team member.](https://airtable.com/app76cWa9xMbzWFn3/pagM1TbZdmVLNQSf6/form) Sign up to [indicate interest in FediZineFest 2026/2027 as an artist, backer, or team member.](https://airtable.com/app76cWa9xMbzWFn3/pagM1TbZdmVLNQSf6/form)
+2
View File
@@ -2,6 +2,8 @@
title: FediZineFest 2024 title: FediZineFest 2024
--- ---
![A number of zines of various sizes and designs and colors laid out on a very colorful bedspread.](/img/2024-zines.jpg)
## Overview ## Overview
Read the [FediZineFest 2024 guidelines.](/years/2024/guidelines) Read the [FediZineFest 2024 guidelines.](/years/2024/guidelines)
+87
View File
@@ -1,3 +1,90 @@
--- ---
title: FediZineFest 2025 Guidelines title: FediZineFest 2025 Guidelines
--- ---
## What
A zine sharing and distribution project for the fediverse.
## Who
### Artists (cap of 20)
Provide physical and/or digital zines; receive payment and physical and/or digital zines.
This year, we are testing an artist waitlist. Additional artists will be added to the pool as funds allow and to cover for drop-outs.
### Backers (cap of 20 for physical zines; no cap for digital)
Provide payment; receive physical and/or digital zines.
## When
Early-mid 2025. Exact dates proposed below.
### Deadline 0: 17 January 2025
Artist sign-up closes.
### Deadline 1: 31 January 2025
(deadline 0 + 2 weeks)
Backer sign-up closes. Artists are informed of the # of physical zines needed.
### Deadline 2: 11 April 2025
(deadline 1 + 10 weeks)
Art submission deadline. Digital zines are submitted to digital drive; physical zines are in the mail.
### Deadline 3: 9 May 2025
(deadline 2 + 4 weeks)
Physical zines arrive at distributor (Lee).
### Deadline 4: 6 June 2025
(deadline 3 + 4 weeks)
Physical zines packaged and ready for shipment. Digital zines are organized and ready to share.
### Deadline 5: 4 July 2025
(deadline 4 + 4 weeks)
Physical zines arrive at recipients. Digital zines shared.
## Where
Anywhere that can ship to/from the US.
## Why
To bring folks together and share art.
## Art guidelines
**Zines do not have to be newly created for this event.** You may absolutely share zines you have previously created. However, please do not share zines that are already freely available in the same format - we want the backers to get a good deal.
Please feel free to continue to share or sell your zine outside of FediZineFest.
While you may submit more than one zine, I ask that you limit **physical** zine submissions to one zine. This is to ensure that shipping doesnt become too unreasonable (for you OR me).
No AI-generated content, please.
### Physical zine restrictions
No larger than one of:
- 21x14.9cm (a sheet of A4 paper, folded once)
- 8.5"x5.5" (a sheet of 8.5"x11" paper, folded once)
## Payment
**This is not a get-rich-quick scheme for anyone involved.** In [2024](/years/2024), the artist payout was about $35 USD per artist.
This year, I'll be adjusting the payment scheme to more appropriately compensate physical zine artists for the costs of printing and shipping. Exact payouts won't be determined until zines are collected to account for any artist drop outs.
Payment will be done over PayPal and Venmo.
+7
View File
@@ -2,6 +2,8 @@
title: FediZineFest 2025 title: FediZineFest 2025
--- ---
![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'](/img/2025-logo.png)
## Overview ## Overview
Read the [FediZineFest 2025 guidelines.](/years/2025/guidelines) Read the [FediZineFest 2025 guidelines.](/years/2025/guidelines)
@@ -34,3 +36,8 @@ This was to help offset cost of printing. Final payouts will be calculated on Ju
- **Physical Zine Coordinator:** Lee Cattarin — [leecat.art](https://leecat.art) - **Physical Zine Coordinator:** Lee Cattarin — [leecat.art](https://leecat.art)
- **Digital Zine Coordinator:** Oona Leganovic — [@playinprogress on fedi](https://assemblag.es/@playinprogress) - **Digital Zine Coordinator:** Oona Leganovic — [@playinprogress on fedi](https://assemblag.es/@playinprogress)
- **Timeline Coordinator:** Jack — [@sodamnqueer on fedi](https://catcatnya.com/@sodamnqueer) - **Timeline Coordinator:** Jack — [@sodamnqueer on fedi](https://catcatnya.com/@sodamnqueer)
- **Website/Database Management:** Lee Cattarin — [leecat.art](https://leecat.art)
### Extra thanks
- [Lisa](https://flipping.rocks/@mycrowgirl) (color palette)
+84
View File
@@ -0,0 +1,84 @@
---
title: FediZineFest 2026-2027 Guidelines
---
## What
A zine sharing and distribution project for the fediverse.
## Who
### Artists (cap of 25)
Provide physical and/or digital zines; receive payment and physical and/or digital zines.
We are again testing an artist waitlist. Additional artists will be added to the pool as funds allow and to cover for drop-outs.
### Backers (cap of 25 for physical zines; no cap for digital)
Provide payment; receive physical and/or digital zines.
## When
2026/2027 dates yet to be determined. Deadline structure as follows:
### Deadline 0
Artist sign-up closes.
### Deadline 1 (deadline 0 + 2 weeks)
Backer sign-up closes. Artists are informed of the number of physical zines needed.
### Deadline 2 (deadline 1 + 10 weeks)
Art submission deadline. Digital zines are submitted to digital drive; physical zines are in the mail.
### Deadline 3 (deadline 2 + 4 weeks)
Physical zines arrive at distributor (Lee).
### Deadline 4 (deadline 3 + 4 weeks)
Physical zines packaged and ready for shipment. Digital zines are organized and ready to share.
### Deadline 5 (deadline 4 + 4 weeks)
Physical zines arrive at recipients. Digital zines shared.
## Where
Anywhere that can ship to/from the US.
## Why
To bring folks together and share art.
## Artist information
**Zines do not have to be newly created for this event.** You may absolutely share zines you have previously created. However, please do not share zines that are already freely available in the same format - we want the backers to get a good deal.
Please feel free to share or sell your zine outside of FediZineFest after the event ends.
While you may submit more than one zine, I ask that you limit **physical** zine submissions to one zine. This is to ensure that shipping doesnt become too unreasonable (for you *or* me).
No AI-generated content, please.
### Physical zine restrictions
No larger than one of:
- 21x14.9cm (a sheet of A4 paper, folded once)
- 8.5"x5.5" (a sheet of 8.5"x11" paper, folded once)
### Payment
**This is not a get-rich-quick scheme for anyone involved.** In [2025](/years/2025), the artist payout was between USD95 and USD135 per artist.
Last year, I adjusted the payment scheme to more appropriately compensate physical zine artists for the costs of printing and shipping. I'll do this again this year. Exact payouts won't be determined until zines are collected to account for any artist drop outs.
Payment will be done over PayPal and Venmo. **If you cannot use either of these services, you must talk to Lee before signing up as an artist.**
## Backer information
Buying physical/digital or digital-only zine bundles will be done via [Lee's Ko-fi shop](https://ko-fi.com/inherentlee). If you've filled out the [interest form](/signup#interest-in-2026-2027), you'll get an email when bundle purchasing goes live. Otherwise, monitor the #fediZineFest and/or #fediZineFest2026 hashtags on the fediverse.
+9
View File
@@ -2,4 +2,13 @@
title: FediZineFest 2026-2027 title: FediZineFest 2026-2027
--- ---
## Overview
The interest form for 2026-2027 is open on the [signup page.](/signup) The interest form for 2026-2027 is open on the [signup page.](/signup)
Read the [FediZineFest 2025 guidelines.](/years/2025/guidelines)
## Team
- **Physical Zine Coordination:** Lee Cattarin — [leecat.art](https://leecat.art)
- **Website/Database Management:** Lee Cattarin — [leecat.art](https://leecat.art)
+1
View File
@@ -6,4 +6,5 @@ eleventyNavigation:
--- ---
{% set zines = collections.zines %} {% set zines = collections.zines %}
{% set allyears = true %}
{% include "zines.njk" %} {% include "zines.njk" %}
+5
View File
@@ -0,0 +1,5 @@
export default {
tags: [
"2024"
],
};
+10
View File
@@ -0,0 +1,10 @@
---
artist: Aaron Rafik El Sabrout
site: "https://terror.black/@sayyid_qishta"
format: physical/digital
titles:
- "Thinking About...It"
- "When I Get a Boy Chest"
---
one of: a hentai coloring book, mini zines about adventure time, v for vendetta, foraging, some poetry and fiction stuff too.
+8
View File
@@ -0,0 +1,8 @@
---
artist: Artcollisions
format: physical/digital
titles:
- Adventures of CC
---
a little zine on CC, the textile critter I created earlier this year.
+11
View File
@@ -0,0 +1,11 @@
---
artist: Blue Grey
site: "https://kolektiva.social/@bluejorts"
format: digital
titles:
- "AAAAAAH"
- "Just Be A Poet"
- "Today Is Another Day"
---
Zine #3: A crippunk, queer-romantic short story between a fox and a bunny.
+9
View File
@@ -0,0 +1,9 @@
---
artist: Dizzi Bloom
site: "https://nitecrew.rip/@dd"
format: digital
titles:
- Autopsy of the Mall God
---
A one-shot comic about a lesbian assassin trying to escape a shadow dimension to be reunited with her wife.
+8
View File
@@ -0,0 +1,8 @@
---
artist: Eric Jennings
format: physical/digital
titles:
- "You Can Fix It, They Said"
---
creative non-fiction with illustrations on the subject of recovery (as a male) from childhood sexual abuse
+9
View File
@@ -0,0 +1,9 @@
---
artist: felix sunflower
site: "https://felixfiles.com/"
format: physical
titles:
- Lil Stinker's lil coloring book
---
clown coloring book!
+8
View File
@@ -0,0 +1,8 @@
---
artist: Fieryzard
format: digital
titles:
- The Thread of Caona Sketches
---
A compilation of exploratory sketches from my webcomic The Thread of Caona (tentative: and some illustrations?).
+8
View File
@@ -0,0 +1,8 @@
---
artist: Handmade Ghost
format: physical/digital
titles:
- UN/CERTAINTY
---
a nonfiction zine about birding, ticker-tape synaesthesia, Huginn & Muninn (the Norse ravens of thought and memory), and poetry.
+9
View File
@@ -0,0 +1,9 @@
---
artist: Haruka Kanata
site: "https://pdx.social/@HarukaK"
format: physical
titles:
- 5 Ballads, 5 Scenes
---
5 Ballads, 5 Scenes - A small artbook featuring 5 watercolor fantasy-comic style paintings, inspired by 5 old ballads, which were famously collected by Francis. J. Child, and have been performed by various modern artists. Pearl-coated paper cover, bound with thread by pamphlet stitch, 12p. H8.5in x W5.5in.
+9
View File
@@ -0,0 +1,9 @@
---
artist: I. Aronson
site: "https://meemu.org/@Ryntastic"
format: physical/digital
titles:
- "IndigenousGulf.Online zine #1"
---
A review of current Indigenous projects going on in the Gulf South, with a focus point of Louisiana, but extending from TX to AL/FL panhandle.
+9
View File
@@ -0,0 +1,9 @@
---
artist: Jack
site: "https://catcatnya.com/@sodamnqueer"
format: digital
titles:
- The One Night Stand
---
queer love zine with mix of poetry and cute/funny prose pieces
+12
View File
@@ -0,0 +1,12 @@
---
artist: Jeff Blackman
format: physical
titles:
- "Places I will go before I die"
- "OH"
- "WUMPF"
- "GAH!"
- "WHAAP!!"
---
Triptyc is a collage based comic strip cut from the funny pages.
+9
View File
@@ -0,0 +1,9 @@
---
artist: lee
site: "https://leecat.art"
format: physical/digital
titles:
- Gender as a Proxy Variable
---
information on handling gender in data and forms
+9
View File
@@ -0,0 +1,9 @@
---
artist: Maece
site: "https://toot.cat/@anglemaece"
format: digital
titles:
- I'm so tired
---
A collection of poetry exploring Autistic Burnout
+8
View File
@@ -0,0 +1,8 @@
---
artist: Nobones
format: physical
titles:
- How to Change a Tire
---
a small illustrated zine providing details on how to fix a flat tire on a bicycle. The zine will cover the basic process of replacing an inner tube, and some thoughts about troubleshooting
+9
View File
@@ -0,0 +1,9 @@
---
artist: Omi
site: "https://heavenforbid.us/@swanchime"
format: physical
titles:
- The Ghost in the Mirror is Me
---
THE GHOST IN THE MIRROR IS ME is a calm, horrifying, and starkly beautiful reminiscing of an atrocity that is only as true as you believe. It is a pure black and white work of sequential art at about 30 pages. I wrote it on the anniversary this year on the winter solstice.
+9
View File
@@ -0,0 +1,9 @@
---
artist: Pesto Jaguar
site: "https://ravenation.club/@pestojaguar"
format: digital
titles:
- Perhaps You Might Try The Soup Issue 01
---
Working on a little 12 page zine called 'Perhaps you might try the soup' In design style it's kind of photo collage, (from original material) and abstract or surreal comics. The content is an odd mish mash of hopepunk, poetry, graphical music and experimental prose. There is strictly no ai generated text or imagery and no use of LLM or diffusion models. Everything is self made by a human.
+9
View File
@@ -0,0 +1,9 @@
---
artist: play in progress
site: "https://mastodon.art/@playinprogress"
format: physical/digital
titles:
- Critters
---
I make ink drawings of various critters, and just realized that some of them make for really nice coloring pages. So now I am suddenly using my own xeroxed drawings as a coloring book, as well as working on making them available as such to others :)
+9
View File
@@ -0,0 +1,9 @@
---
artist: riotmuffin
site: "https://ni.hil.ist/@riotmuffin"
format: physical/digital
titles:
- Get Off My Nuts
---
i've made lots of zines and am always looking for reasons for more! the ones i'm most proud of include: travelogue about biking around lake superior as a queer/trans chick -- 'public bathrooms of twin cities cemeteries' (you can look this up on archive.org) -- and various political projects especially related to minneapolis, the george floyd uprising and anarchism/abolitionism. … things i have in the works include a historical fiction alternate history of the george floyd uprising, and a piece about queerness, rebellion and covid
+9
View File
@@ -0,0 +1,9 @@
---
artist: Sanae
site: "https://carfree.city/@sanae"
format: physical/digital
titles:
- Bench Politics
---
something about transportation and/or public space
+8
View File
@@ -0,0 +1,8 @@
---
artist: Sarah Sammis
format: physical
titles:
- Chicken Zine
---
It will be chicken themed. A brief history of the chicken. One panel chicken comics. Chickens as famous literary characters. Something along those lines.
+9
View File
@@ -0,0 +1,9 @@
---
artist: Sophie
site: "https://glammr.us/@Sophie"
format: physical
titles:
- Congratulations! You're the Queerest-Looking Person in This Room
---
Congratulations! You're the Queerest-Looking Person in This Room
+10
View File
@@ -0,0 +1,10 @@
---
artist: Syd
site: "https://donphan.social/@hi_cial"
format: digital
titles:
- "Queer Birds 2022"
- "FFVII Blazed Illustration"
---
I create zines about animals, final fantasy 7 and comics that are queer and furry adjacent.
@@ -0,0 +1,8 @@
---
artist: voidfuck poetry collective
format: digital
titles:
- voidfuck 1
---
Poetry zine about the body under capitalism and yearning for anarchy. Topics include madness, disability, love, climate anxiety, body dysphoria, queerness, anarchy, poverty, etc. Poetry is written. Might include a few photos or artwork.
+9
View File
@@ -0,0 +1,9 @@
---
artist: Wetdryvac
site: "https://landofkittens.social/users/Wetdryvac"
format: digital
titles:
- CONTRACT / CONSENT LAIR W fZF | 001
---
I particularly like photography zines geared towards texture, both black and white, and color. I deliver finals as print-ready DRM-Free PDF, and it's cool to distribute them as such. I also do zines of written word and art.
+5
View File
@@ -0,0 +1,5 @@
export default {
tags: [
"2025"
],
};
+12
View File
@@ -0,0 +1,12 @@
---
artist: Aaron El Sabrout
site: "https://toreachpoise.itch.io"
format: "physical/digital"
titles:
- "Read Me to Filth/I'm Dying of Thirst"
- "I Have a Weird Relationship to Clothes..."
- "I Love Myself"
- "Leave Them Bee"
---
new collection of poetry on nature, leftist politics, and transness!
+9
View File
@@ -0,0 +1,9 @@
---
artist: Acin Fals
site: "https://shadowfals.carrd.co/"
format: digital
titles:
- The Rose Woman and the Bear
---
romantic m/m flash fiction with a theme of transitions, seasons, and/or memories
+9
View File
@@ -0,0 +1,9 @@
---
artist: Artcollisions
site: "https://vis.social/@artcollisions"
format: "physical/digital"
titles:
- "Adventures of DD, Fifi, and Pepe"
---
Further cozy adventures of CC and friends, textile art characters
+9
View File
@@ -0,0 +1,9 @@
---
artist: Ashley McQuaid
site: "https://eightofpentacles.com"
format: "physical"
titles:
- "Tales from Rockery Loop"
---
I am leaning towards making a miniature field guide of the birds, mammals, and plants that live on my favorite trail. Back and forth on whether I want to include some personal narrative but pen & pencil drawings of critters for sure
+8
View File
@@ -0,0 +1,8 @@
---
artist: bouncinglime
format: physical/digital
titles:
- Postcards
---
four postcards printed on cardstock (physical) or for printing on cardstock (digital) in black-and-white that can be colored and otherwise decorated and sent out!
+9
View File
@@ -0,0 +1,9 @@
---
artist: Cammie
site: "https://worshipthesquid.tumblr.com/"
format: "physical/digital"
titles:
- "Mortsafe"
---
Mortsafe is a little biro zine about fungal zombies, non-human or gestalt minds, and life continuing differently after death :)
+9
View File
@@ -0,0 +1,9 @@
---
artist: "Em/mett"
site: "https://proteanart.xyz"
format: "physical/digital"
titles:
- "So You Want To Be A Pen Pal"
---
So You Want To Be A Pen Pal minizine. About being a pen pal for incarcerated folks! And beginner advocacy work!
+9
View File
@@ -0,0 +1,9 @@
---
artist: Evel
site: "https://evel.life"
format: digital
titles:
- Let Your Disabilities Hold You Back!!!
---
About severe disability with a bit extra on being a caregiver
+9
View File
@@ -0,0 +1,9 @@
---
artist: goblin jane
site: "https://thewellandthetree.com/"
format: physical/digital
titles:
- Doorways are Portals
---
tiny tales of wandering thru interdimensional portals, meeting new friends big and small, and making stone soup.
+9
View File
@@ -0,0 +1,9 @@
---
artist: gup
site: "https://cyberpunk.gay/@glyph"
format: physical/digital
titles:
- (untitled)
---
fortune teller/ cootie catcher foldable. prefolded for physical, print and fold yourself for digital. decorated with hand carved stamps. black and white. i need to buy nice paper.
+9
View File
@@ -0,0 +1,9 @@
---
artist: "Léa V.T."
site: "https://mastodon.art/@leavt"
format: physical/digital
titles:
- Grand Jaloprix
---
I made a small comic this summer and i'd like to print it in zine form with bonus illustrations and prep sketches. It's about a bunch of kids living in a dieselpunk junkyard racing wacky vehicles. Friends become enemies and enemies become friends, lots of vroom vroom. [preview](https://mastodon.art/@leavt/113056897528979869)
@@ -2,9 +2,8 @@
artist: lee artist: lee
site: "https://leecat.art" site: "https://leecat.art"
format: physical format: physical
title: KESTREL titles:
tags: - KESTREL
- 2025
--- ---
2 color hand-printed zine with pictures of my dog 2 color hand-printed zine with pictures of my dog
+9
View File
@@ -0,0 +1,9 @@
---
artist: Limnetic Villains
site: "https://limneticvillains.bandcamp.com"
format: digital
titles:
- Auditory Ossicles Issue 1
---
A fake 1970s punk zine, including interviews, photos, reviews, fake adverts for products and bands that don't exist, in the style of the time.
+9
View File
@@ -0,0 +1,9 @@
---
artist: Mythical Type
site: "https://mythicaltype.com/zines/"
format: physical
titles:
- Text Message Moods
---
“Text Message Moods” is an 8-page mini zine that illustrates what text message conversations look like, depending on peoples moods. Hand-drawn, printed in color on white paper.
+9
View File
@@ -0,0 +1,9 @@
---
artist: Pesto Jaguar
site: "https://sunny.garden/@pestojaguar"
format: digital
titles:
- "Swimming Through Treacle Issue 00"
---
abstract, absurd, surreal, experimental?... Perhaps comics-adjacent or sciFi-adjacent?... some manner of weird zine, mainly images with some text like experimental prose or poetry, even?... Around 20 pages in A5. No 'AI' or image/text generation, just human made digital art.
+9
View File
@@ -0,0 +1,9 @@
---
artist: play in progress
site: "https://mastodon.art/@playinprogress"
format: physical/digital
titles:
- A Murder of Crows
---
a fold-out formal experiment combining letter shapes and ink drawings
+8
View File
@@ -0,0 +1,8 @@
---
artist: riotmuffin
format: physical/digital
titles:
- "You Gotta Leave: Rebel Stories"
---
Im gonna try to do that George Floyd uprising alternate history I was thinking about last time, but I might also do something else. In any case, itll be SHORTER than last years honker lol
+9
View File
@@ -0,0 +1,9 @@
---
artist: Wetdryvac
site: "https://wetdryvac.net"
format: digital
titles:
- Rivet/Drainage Lair W fZF | 002
---
The Vac is a contract/consent ethicist with forays into art, music, literature, and whatever else strikes its fancy. This usually means being somewhere under a cat.
+9
View File
@@ -0,0 +1,9 @@
---
artist: xyzzy
site: "https://xyzzyzzyzx.xyz/"
format: digital
titles:
- "Shut up & eat your dirt!"
---
a perzine about my experience in a conservative catholic high school, called “shut up & eat your dirt”
+7
View File
@@ -0,0 +1,7 @@
---
artist:
site:
format:
titles:
eleventyExcludeFromCollections: true
---