Compare commits
20 Commits
0439f0478d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 8104cd4520 | |||
| 4f38bbfc82 | |||
| 56736453fe | |||
| c04993c983 | |||
| ed3a845a55 | |||
| c8ce389065 | |||
| c95b3c080a | |||
| c559aa9154 | |||
| a14753e656 | |||
| 82db8f8758 | |||
| d434da450f | |||
| 913f8469f3 | |||
| 4f12d9c5ac | |||
| e14261bf4d | |||
| 073ad660e4 | |||
| c6dcdacbec | |||
| 8ab1cb687b | |||
| ac1903c5a1 | |||
| bf677c3cdf | |||
| 8adb83d8a8 |
@ -58,7 +58,7 @@ export default function(eleventyConfig) {
|
|||||||
|
|
||||||
/* Filter out structural tags */
|
/* Filter out structural tags */
|
||||||
eleventyConfig.addFilter("removeBasicTags", (tags) => {
|
eleventyConfig.addFilter("removeBasicTags", (tags) => {
|
||||||
return tags.filter(tag => ["all", "posts", "gallery", "reference", "tagPagination"].indexOf(tag) === -1);
|
return tags.filter(tag => ["all", "posts", "gallery", "reference", "tagPagination", "blur"].indexOf(tag) === -1);
|
||||||
});
|
});
|
||||||
|
|
||||||
/* What it says on the tin */
|
/* What it says on the tin */
|
||||||
|
|||||||
@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
layout: base.njk
|
|
||||||
---
|
|
||||||
{% css %}{% include "css/resume.css" %}{% endcss %}
|
|
||||||
|
|
||||||
{{ content | safe }}
|
|
||||||
@ -3,9 +3,10 @@
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="{{ post.url }}">
|
<a class="postlink" href="{{ post.url }}">
|
||||||
{% if post.data.image %}
|
{% if post.data.image %}
|
||||||
<img src="/img/{{ post.data.image.src }}" alt="{{ post.data.image.alt }}">
|
<img src="/img/{{ post.data.image.src }}" alt="{{ post.data.image.alt }}"
|
||||||
|
{% if "blur" in post.data.tags %}class="blur"{% endif %}>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<h2 data-ha-exclude>{{ post.data.title }}</h2>
|
<h2 data-ha-exclude>{{ post.data.title }} {% if "blur" in post.data.tags %}(mature){% endif %}</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
{% for tag in post.data.tags | removeBasicTags %}
|
{% for tag in post.data.tags | removeBasicTags %}
|
||||||
<li>{{ tag }}</li>
|
<li>{{ tag }}</li>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1203,6 +1214,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/1/` was built on 2026-03-25T20:00:21.202Z -->
|
<!-- This page `/1/` was built on 2026-04-21T21:31:09.548Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1229,6 +1240,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/10/` was built on 2026-03-25T20:00:24.042Z -->
|
<!-- This page `/10/` was built on 2026-04-21T21:31:12.114Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1239,6 +1250,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/11/` was built on 2026-03-25T20:00:24.284Z -->
|
<!-- This page `/11/` was built on 2026-04-21T21:31:12.333Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1227,6 +1238,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/12/` was built on 2026-03-25T20:00:24.552Z -->
|
<!-- This page `/12/` was built on 2026-04-21T21:31:12.471Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1213,6 +1224,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/13/` was built on 2026-03-25T20:00:24.792Z -->
|
<!-- This page `/13/` was built on 2026-04-21T21:31:12.719Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1133,6 +1144,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/14/` was built on 2026-03-25T20:00:24.888Z -->
|
<!-- This page `/14/` was built on 2026-04-21T21:31:12.835Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1209,6 +1220,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/2/` was built on 2026-03-25T20:00:21.577Z -->
|
<!-- This page `/2/` was built on 2026-04-21T21:31:09.908Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1215,6 +1226,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/3/` was built on 2026-03-25T20:00:21.898Z -->
|
<!-- This page `/3/` was built on 2026-04-21T21:31:10.222Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1115,13 +1126,15 @@ footer a:focus-visible {
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/luminescent/">
|
<a class="postlink" href="/luminescent/">
|
||||||
|
|
||||||
<img src="/img/luminescent-print.jpg" alt="A print of a tattooed woman in bright highlighter yellow underwear." loading="lazy" decoding="async" width="900" height="1200">
|
<img src="/img/luminescent-print.jpg" alt="A print of a tattooed woman in bright highlighter yellow underwear." class="blur" loading="lazy" decoding="async" width="900" height="1200">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="luminescent">luminescent</h2>
|
<h2 data-ha-exclude="" id="luminescent-mature">luminescent (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1207,6 +1220,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/4/` was built on 2026-03-25T20:00:22.297Z -->
|
<!-- This page `/4/` was built on 2026-04-21T21:31:10.605Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -219,6 +219,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1006,6 +1012,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/404.html` was built on 2026-03-25T20:00:18.520Z -->
|
<!-- This page `/404.html` was built on 2026-04-21T21:31:06.798Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1127,9 +1138,9 @@ footer a:focus-visible {
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/bottom-growth/">
|
<a class="postlink" href="/bottom-growth/">
|
||||||
|
|
||||||
<img src="/img/bottom-growth-prints.jpg" alt="4 copies of the same print in various color schemes, laid out in a 2x2 grid. The print shows testosterone-driven bottom growth of a clitoris. The color schemes are, clockwise from top right, brown on turquoise, red on cornsilk (muted yellow), violet on magenta, and mint green on lilac." loading="lazy" decoding="async" width="1000" height="1000">
|
<img src="/img/bottom-growth-prints.jpg" alt="4 copies of the same print in various color schemes, laid out in a 2x2 grid. The print shows testosterone-driven bottom growth of a clitoris. The color schemes are, clockwise from top right, brown on turquoise, red on cornsilk (muted yellow), violet on magenta, and mint green on lilac." class="blur" loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="bottom-growth">bottom growth</h2>
|
<h2 data-ha-exclude="" id="bottom-growth-mature">bottom growth (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1207,6 +1218,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/5/` was built on 2026-03-25T20:00:22.617Z -->
|
<!-- This page `/5/` was built on 2026-04-21T21:31:10.886Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1209,6 +1220,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/6/` was built on 2026-03-25T20:00:22.973Z -->
|
<!-- This page `/6/` was built on 2026-04-21T21:31:11.189Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1211,6 +1222,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/7/` was built on 2026-03-25T20:00:23.171Z -->
|
<!-- This page `/7/` was built on 2026-04-21T21:31:11.296Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1203,6 +1214,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/8/` was built on 2026-03-25T20:00:23.464Z -->
|
<!-- This page `/8/` was built on 2026-04-21T21:31:11.522Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1045,13 +1056,15 @@ footer a:focus-visible {
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/rope-one/">
|
<a class="postlink" href="/rope-one/">
|
||||||
|
|
||||||
<img src="/img/rope-print-1.jpg" alt="A print of a nude trans woman in an asymmetrical rope harness." loading="lazy" decoding="async" width="1000" height="1242">
|
<img src="/img/rope-print-1.jpg" alt="A print of a nude trans woman in an asymmetrical rope harness." class="blur" loading="lazy" decoding="async" width="1000" height="1242">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="rope-one">rope (one)</h2>
|
<h2 data-ha-exclude="" id="rope-one-mature">rope (one) (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1109,9 +1122,9 @@ footer a:focus-visible {
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/girldick/">
|
<a class="postlink" href="/girldick/">
|
||||||
|
|
||||||
<img src="/img/girldick-shirt.jpg" alt="A butch cooking and wearing a cropped tee with blue cap sleeves that reads girldick in blue G.I.Joe font." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/girldick-shirt.jpg" alt="A butch cooking and wearing a cropped tee with blue cap sleeves that reads girldick in blue G.I.Joe font." class="blur" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="girldick">girldick</h2>
|
<h2 data-ha-exclude="" id="girldick-mature">girldick (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1131,9 +1144,9 @@ footer a:focus-visible {
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/boypussy/">
|
<a class="postlink" href="/boypussy/">
|
||||||
|
|
||||||
<img src="/img/boypussy-shirt.jpg" alt="A butch holding a chainsaw and wearing a tank top that reads boypussy in pink Barbie font." loading="lazy" decoding="async" width="1000" height="1250">
|
<img src="/img/boypussy-shirt.jpg" alt="A butch holding a chainsaw and wearing a tank top that reads boypussy in pink Barbie font." class="blur" loading="lazy" decoding="async" width="1000" height="1250">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="boypussy">boypussy</h2>
|
<h2 data-ha-exclude="" id="boypussy-mature">boypussy (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1243,6 +1256,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/9/` was built on 2026-03-25T20:00:23.806Z -->
|
<!-- This page `/9/` was built on 2026-04-21T21:31:11.801Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,11 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/leather-chest-harness/">
|
<a class="postlink" href="/leather-keychains/">
|
||||||
|
|
||||||
<img src="/img/leather-chest-harness.jpg" alt="Someone from chin to mid-torso, wearing a dark teal leather chest harness with matte black fittings over a t shirt." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/leather-keychains.jpg" alt="A picture of multiple leather keychains sitting on a wood table. Many of them are simple rectangle shapes with stitching around the edge; a few are odd wavy or geometric shapes. A few say things like 'MOM' or 'EGG'." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="leather-chest-harness">leather chest harness</h2>
|
<h2 data-ha-exclude="" id="leather-keychains">leather keychains </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1482,11 +1493,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/moss-harness/">
|
<a class="postlink" href="/long-zipper-bifold/">
|
||||||
|
|
||||||
<img src="/img/moss-harness.jpg" alt="A nylon webbing harness in bright teal laid out on a desk." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/long-zipper-bifold.jpg" alt="A collage showing an orange leather wallet with a long zipper running the length of the outside." loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="moss-harness">moss harness</h2>
|
<h2 data-ha-exclude="" id="long-zipper-bifold">long zipper bifold </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1496,11 +1507,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/x-acto-knife-sheath/">
|
<a class="postlink" href="/vertical-card-wallet/">
|
||||||
|
|
||||||
<img src="/img/knife-sheaths.jpg" alt="Several blades with leather sheaths, and a few extra sheaths. There's a #2 blade with an orange sheath with yellow stitching, a #11 blade with a blue sheath with light grey stitching, and a skiving knife with a plum sheath and pink stitching." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/vertical-card-wallet.jpg" alt="A collage showing a hand-stitched leather card wallet with 3 card pockets and 1 interior pocket." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="x-acto-knife-sheath">x-acto knife sheath</h2>
|
<h2 data-ha-exclude="" id="vertical-card-wallet">vertical card wallet </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1540,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/aarons-mask/` was built on 2026-03-25T20:00:18.482Z -->
|
<!-- This page `/aarons-mask/` was built on 2026-04-21T21:31:06.763Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -219,6 +219,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1123,6 +1129,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/about/` was built on 2026-03-25T20:00:18.520Z -->
|
<!-- This page `/about/` was built on 2026-04-21T21:31:06.798Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1484,15 +1495,17 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/square-watercolor-pad/">
|
<a class="postlink" href="/brookes-notebook/">
|
||||||
|
|
||||||
<img src="/img/square-watercolor-pad.jpg" alt="A two panel collage showing a square book with a tan cover and blue and gold endpapers." loading="lazy" decoding="async" width="1000" height="1331">
|
<img src="/img/brooke-notebook.jpg" alt="A six panel collage showing the covers, endpapers, and some of the pages of a notebook." loading="lazy" decoding="async" width="1000" height="1500">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="square-watercolor-pad">square watercolor pad</h2>
|
<h2 data-ha-exclude="" id="brookes-notebook">brooke's notebook </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>book</li>
|
<li>book</li>
|
||||||
|
|
||||||
|
<li>highlight</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1512,15 +1525,13 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/leather-long-stitch-journals/">
|
<a class="postlink" href="/stampede-journal/">
|
||||||
|
|
||||||
<img src="/img/long-stitch-journals.jpg" alt="A stack of hand-bound journals showing long stitches aligned with the spines. They are leather bound and have tie closures." loading="lazy" decoding="async" width="1000" height="1333">
|
<img src="/img/stampede-journal.jpg" alt="A 4-part collage of a hardcover book, showing a coloring page with 'stampede!' written across it." loading="lazy" decoding="async" width="1000" height="1777">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="leather-long-stitch-journals">leather long-stitch journals</h2>
|
<h2 data-ha-exclude="" id="stampede-journal">stampede journal </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
<li>book</li>
|
<li>book</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1558,6 +1569,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/acadia-coloring-journal/` was built on 2026-03-25T20:00:18.478Z -->
|
<!-- This page `/acadia-coloring-journal/` was built on 2026-04-21T21:31:06.759Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1467,22 +1478,6 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/textures-unite/">
|
|
||||||
|
|
||||||
<img src="/img/textures-unite.jpg" alt="a largely unseen person holds up an expansive knitted shawl, built in 6 sections of different textures and colors. in the background, trees and dappled sunlight." loading="lazy" decoding="async" width="1000" height="1334">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="textures-unite">textures unite</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>knit</li>
|
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/pride-dice-bags/">
|
<a class="postlink" href="/pride-dice-bags/">
|
||||||
|
|
||||||
@ -1500,11 +1495,25 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/pink-socks/">
|
<a class="postlink" href="/brookes-socks/">
|
||||||
|
|
||||||
<img src="/img/pink-socks.jpg" alt="Feet propped up on a car dashboard, with a desert landscape beyond. The feet are in salmon-colored socks with black flecks, and decorative lines running down the socks." loading="lazy" decoding="async" width="1000" height="1333">
|
<img src="/img/brooke-socks.jpg" alt="Feet in a pair of colorful socks. They are identically striped and quickly vary between yellow, green, blue, white, and gray." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="pink-socks">pink socks</h2>
|
<h2 data-ha-exclude="" id="brookes-socks">brooke's socks </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>knit</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/keffiyah-fishing-net-pattern/">
|
||||||
|
|
||||||
|
<img src="/img/keffiyah-nets.jpg" alt="a knitted swatch. it's mostly white yarn, but a grid of dark red- purple- green yarn that looks like a chain link fence is built into it. the diagonal lines are achieved with floats of yarn from one row, then picked up and knit into several rows later." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="keffiyah-fishing-net-pattern">keffiyah fishing net pattern </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>knit</li>
|
<li>knit</li>
|
||||||
@ -1544,6 +1553,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/acadia-mitts/` was built on 2026-03-25T20:00:18.493Z -->
|
<!-- This page `/acadia-mitts/` was built on 2026-04-21T21:31:06.792Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1430,9 +1441,9 @@ export { HeadingAnchors }</script>
|
|||||||
<p>Fair warning: This solution is likely imperfect.</p>
|
<p>Fair warning: This solution is likely imperfect.</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 id="the-dialog-element">the <code>dialog</code> element</h2>
|
<h2 id="the-dialog-element">the <code>dialog</code> element</h2>
|
||||||
<p>do you know how many tutorials want you to roll your own modals? It's a not-insignificant amount. W3Schools, top of the search results in many cases, recommends it in two places - <a href="https://www.w3schools.com/howto/howto_css_modal_images.asp" target="_blank">image modals</a> and <a href="https://www.w3schools.com/css/css3_images_modal.asp" target="_blank">responsive image modals</a>. Several search results for "image modal" pop up div solutions - <a href="https://stackoverflow.com/questions/75598914/how-to-display-an-image-clicking-on-it-using-modal-window-on-html-css-and-js" target="_blank">div modal 1</a>, <a href="https://dev.to/salehmubashar/create-an-image-modal-with-javascript-2lf3" target="_blank">div modal 2</a>, <a href="https://www.youtube.com/watch?v=Y9TNHynFjaQ" target="_blank">div modal 3</a>.</p>
|
<p>do you know how many tutorials want you to roll your own modals? It's a not-insignificant amount. W3Schools, top of the search results in many cases, recommends it in two places - <a href="https://www.w3schools.com/howto/howto_css_modal_images.asp" target="_blank" rel="external">image modals</a> and <a href="https://www.w3schools.com/css/css3_images_modal.asp" target="_blank" rel="external">responsive image modals</a>. Several search results for "image modal" pop up div solutions - <a href="https://stackoverflow.com/questions/75598914/how-to-display-an-image-clicking-on-it-using-modal-window-on-html-css-and-js" target="_blank" rel="external">div modal 1</a>, <a href="https://dev.to/salehmubashar/create-an-image-modal-with-javascript-2lf3" target="_blank" rel="external">div modal 2</a>, <a href="https://www.youtube.com/watch?v=Y9TNHynFjaQ" target="_blank" rel="external">div modal 3</a>.</p>
|
||||||
<p>If you don't know of the existence of <code><dialog></code>, a search for image modals will not get you there quickly.</p>
|
<p>If you don't know of the existence of <code><dialog></code>, a search for image modals will not get you there quickly.</p>
|
||||||
<p>If you search for <em>accessible</em> image modals, you'll still hear about <code><div></code>s. Hell, <a href="https://www.w3.org/WAI/ARIA/apg/patterns/dialog-modal/examples/dialog/" target="_blank">W3C's ARIA Authoring Practices Guide uses a <code><div></code></a>. You kinda have to go digging to read about the <a href="https://www.scottohara.me/blog/2023/01/26/use-the-dialog-element.html" target="_blank">dialog element from Scott O'Hara</a> or find <a href="https://accessibleweb.dev/modals" target="_blank">AccessibleWeb.dev's piece on modals</a>. Or you can go <a href="https://adrianroselli.com/2025/06/where-to-put-focus-when-opening-a-modal-dialog.html" target="_blank">straight for Adrian Roselli</a> and find examples that use the native <code><dialog></code> element. Thanks Adrian!</p>
|
<p>If you search for <em>accessible</em> image modals, you'll still hear about <code><div></code>s. Hell, <a href="https://www.w3.org/WAI/ARIA/apg/patterns/dialog-modal/examples/dialog/" target="_blank" rel="external">W3C's ARIA Authoring Practices Guide uses a <code><div></code></a>. You kinda have to go digging to read about the <a href="https://www.scottohara.me/blog/2023/01/26/use-the-dialog-element.html" target="_blank" rel="external">dialog element from Scott O'Hara</a> or find <a href="https://accessibleweb.dev/modals" target="_blank" rel="external">AccessibleWeb.dev's piece on modals</a>. Or you can go <a href="https://adrianroselli.com/2025/06/where-to-put-focus-when-opening-a-modal-dialog.html" target="_blank" rel="external">straight for Adrian Roselli</a> and find examples that use the native <code><dialog></code> element. Thanks Adrian!</p>
|
||||||
<p>Did I roll my own modal at first? Regretfully, yes. I'd used the <code><dialog></code> element before... several years ago... in a project I don't have access to anymore... Needless to say, I had forgotten about its existence.</p>
|
<p>Did I roll my own modal at first? Regretfully, yes. I'd used the <code><dialog></code> element before... several years ago... in a project I don't have access to anymore... Needless to say, I had forgotten about its existence.</p>
|
||||||
<p>Anyway, I got there. Eventually. So let's talk about modals and <code><dialog></code>.</p>
|
<p>Anyway, I got there. Eventually. So let's talk about modals and <code><dialog></code>.</p>
|
||||||
<h3 id="what-does-dialog-give-us">what does <code><dialog></code> give us?</h3>
|
<h3 id="what-does-dialog-give-us">what does <code><dialog></code> give us?</h3>
|
||||||
@ -1448,7 +1459,7 @@ export { HeadingAnchors }</script>
|
|||||||
<li>the <code>autofocus</code> attribute for in-modal elements to set which element should receive focus on opening the modal</li>
|
<li>the <code>autofocus</code> attribute for in-modal elements to set which element should receive focus on opening the modal</li>
|
||||||
<li>the <code>open</code> attribute which is set on the <code><dialog></code> when open and removed when closed (when you use the functions mentioned previously)</li>
|
<li>the <code>open</code> attribute which is set on the <code><dialog></code> when open and removed when closed (when you use the functions mentioned previously)</li>
|
||||||
</ol>
|
</ol>
|
||||||
<p>and more. This is just the pieces in use for me. There's also things like <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#additional_notes" target="_blank">setting forms so that submission closes the dialog</a> (point 1 in that list).</p>
|
<p>and more. This is just the pieces in use for me. There's also things like <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#additional_notes" target="_blank" rel="external">setting forms so that submission closes the dialog</a> (point 1 in that list).</p>
|
||||||
<h3 id="what-doesnt-it-give-us">what doesn't it give us?</h3>
|
<h3 id="what-doesnt-it-give-us">what doesn't it give us?</h3>
|
||||||
<ol>
|
<ol>
|
||||||
<li>a close button - gotta roll your own and attach the requisite <code>.close()</code> call (or rely on users hitting escape or clicking the backdrop)</li>
|
<li>a close button - gotta roll your own and attach the requisite <code>.close()</code> call (or rely on users hitting escape or clicking the backdrop)</li>
|
||||||
@ -1459,7 +1470,7 @@ export { HeadingAnchors }</script>
|
|||||||
<blockquote>
|
<blockquote>
|
||||||
<p>Do not add the <code>tabindex</code> property to the <code><dialog></code> element as it is not interactive and does not receive focus.</p>
|
<p>Do not add the <code>tabindex</code> property to the <code><dialog></code> element as it is not interactive and does not receive focus.</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<p>— <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#additional_notes" target="_blank"><code><dialog></code>: additional notes</a> (point 3 in that list).</p>
|
<p>— <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#additional_notes" target="_blank" rel="external"><code><dialog></code>: additional notes</a> (point 3 in that list).</p>
|
||||||
<p>despite this, I found that in Firefox (but not Edge), the <em><code><dialog></code> itself was focusable</em>. I have no idea why, but I tested this on a totally unstyled and unmodified page and still found it to be true. As a focusable element, it made no sense. It had no interactivity and could not be activated.</p>
|
<p>despite this, I found that in Firefox (but not Edge), the <em><code><dialog></code> itself was focusable</em>. I have no idea why, but I tested this on a totally unstyled and unmodified page and still found it to be true. As a focusable element, it made no sense. It had no interactivity and could not be activated.</p>
|
||||||
<p>I'm still torn: do I add <code>tabindex="-1"</code>? MDN specifically says not to, but I'm pretty sure they're warning against making it <em>focusable</em>. Why warn against making it nonfocusable when <em>it's not supposed to be focusable in the first place</em>, after all?</p>
|
<p>I'm still torn: do I add <code>tabindex="-1"</code>? MDN specifically says not to, but I'm pretty sure they're warning against making it <em>focusable</em>. Why warn against making it nonfocusable when <em>it's not supposed to be focusable in the first place</em>, after all?</p>
|
||||||
<p>At current, I'm ambivalent, but I've added <code>tabindex="-1"</code> to handle Firefox's poor behavior. Making the dialog focusable is unhelpful and confusing.</p>
|
<p>At current, I'm ambivalent, but I've added <code>tabindex="-1"</code> to handle Firefox's poor behavior. Making the dialog focusable is unhelpful and confusing.</p>
|
||||||
@ -1479,7 +1490,7 @@ export { HeadingAnchors }</script>
|
|||||||
<h3 id="css">css</h3>
|
<h3 id="css">css</h3>
|
||||||
<p>here's the most relevant parts of the CSS:</p>
|
<p>here's the most relevant parts of the CSS:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><code>dialog::backdrop</code> was given a <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Colors/Using_relative_colors" target="_blank">relatively calculated</a> color - <code>rgba(from var(--color-bg) r g b / .8)</code> - as well as a blur</li>
|
<li><code>dialog::backdrop</code> was given a <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Colors/Using_relative_colors" target="_blank" rel="external">relatively calculated</a> color - <code>rgba(from var(--color-bg) r g b / .8)</code> - as well as a blur</li>
|
||||||
<li><code>body:has(dialog[open])</code> has <code>overflow: hidden</code> set</li>
|
<li><code>body:has(dialog[open])</code> has <code>overflow: hidden</code> set</li>
|
||||||
<li><code>dialog img</code> uses a <code>max-height</code> as well as <code>object-fit: contain</code></li>
|
<li><code>dialog img</code> uses a <code>max-height</code> as well as <code>object-fit: contain</code></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -1520,20 +1531,6 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/backend-accessibility/">
|
|
||||||
|
|
||||||
<img src="/img/camelCase-print.jpg" alt="A carved stamp next to its print. The print reads '#camelCase' in a slightly formal-looking italic font." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="backend-accessibility">backend accessibility</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>software</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/designing-a-bag/">
|
<a class="postlink" href="/designing-a-bag/">
|
||||||
|
|
||||||
@ -1551,16 +1548,28 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/azure-locations-and-file-crawling/">
|
<a class="postlink" href="/screen-reader-optimizations/">
|
||||||
|
|
||||||
<img src="/img/azure-locations.jpg" alt="A Linux terminal. There is a fun rainbow flag in ascii art at the top, and then the user has called a command asking Azure for a list of locations applicable to a specific resource type. The output is lengthy." loading="lazy" decoding="async" width="1000" height="827">
|
<img src="/img/crow.jpg" alt="Image unrelated to post. A crow poses on driftwood against a whitish sky." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="azure-locations-and-file-crawling">azure locations and file crawling</h2>
|
<h2 data-ha-exclude="" id="screen-reader-optimizations">screen reader optimizations </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>software</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/comparing-text-editors/">
|
||||||
|
|
||||||
|
<img src="/img/horsetail.jpg" alt="Image unrelated to post. Close up on a horsetail plant's stem, with many small needle-like leaves emerging from all sides of the circular stem at each segmented joint." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="comparing-text-editors">comparing text editors </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>software</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1597,6 +1606,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/accessible-image-modals/` was built on 2026-03-25T20:00:18.519Z -->
|
<!-- This page `/accessible-image-modals/` was built on 2026-04-21T21:31:06.797Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1883,11 +1894,11 @@ codeberg https://codeberg.org/inherentlee/git-intro.git (push)</code></pre>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/moving-images/">
|
<a class="postlink" href="/intro-to-wireframing/">
|
||||||
|
|
||||||
<img src="/img/cormorant.jpg" alt="Image unrelated to post. A cormorant, a type of black waterfowl, poses with wings spread on a buoy in Puget Sound. Off to the left, another bird floats." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/aggregator-wireframes.jpg" alt="a figma page with 4 major sections titled aggregator, aggregator mobile, aggregator color, and aggregator mobile color. each section has 7 pages in it - all sections pretty clearly have the same 7 pages, with the mobile sections shown on mobile screens and the color sections in a rainbow of pastels rather than grayscale." loading="lazy" decoding="async" width="1000" height="1042">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="moving-images">moving images</h2>
|
<h2 data-ha-exclude="" id="intro-to-wireframing">intro to wireframing </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>software</li>
|
||||||
@ -1897,11 +1908,11 @@ codeberg https://codeberg.org/inherentlee/git-intro.git (push)</code></pre>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/accessible-image-modals/">
|
<a class="postlink" href="/eleventy-lessons/">
|
||||||
|
|
||||||
<img src="/img/snacking-seagull.jpg" alt="Image unrelated to post. A seagull floating in the water with a starfish hanging out of eir mouth." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/hellebore.jpg" alt="Image unrelated to post. Close up on a pale green hellebore flower." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="accessible-image-modals">accessible image modals</h2>
|
<h2 data-ha-exclude="" id="eleventy-lessons">eleventy lessons </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>software</li>
|
||||||
@ -1955,6 +1966,6 @@ codeberg https://codeberg.org/inherentlee/git-intro.git (push)</code></pre>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/an-intro-to-git/` was built on 2026-03-25T20:00:18.516Z -->
|
<!-- This page `/an-intro-to-git/` was built on 2026-04-21T21:31:06.795Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1490,17 +1501,33 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/not-a-drill/">
|
<a class="postlink" href="/rope-one/">
|
||||||
|
|
||||||
<img src="/img/not-a-drill-print.jpg" alt="A print in dark teal ink depicting a power drill with text in cursive below that reads 'ceci n'est pas un exercice' or 'this is not a drill'" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/rope-print-1.jpg" alt="A print of a nude trans woman in an asymmetrical rope harness." class="blur" loading="lazy" decoding="async" width="1000" height="1242">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="not-a-drill">not a drill</h2>
|
<h2 data-ha-exclude="" id="rope-one-mature">rope (one) (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/artisans-cooperative-shirts/">
|
||||||
|
|
||||||
|
<img src="/img/artisans-coop-shirt.jpg" alt="A black tank top laid on a desk. In white ink it reads 'Artisans Cooperative' with a print of some chickens and a quail." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="artisans-cooperative-shirts">artisans cooperative shirts </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1521,28 +1548,6 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/queer/">
|
|
||||||
|
|
||||||
<img src="/img/queer-print.jpg" alt="A print of the word queer in black ink. The letters are rounded with elongated oval negative space." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="queer">queer</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>card</li>
|
|
||||||
|
|
||||||
<li>sticker</li>
|
|
||||||
|
|
||||||
<li>pin</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1574,6 +1579,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/anarchy-autism/` was built on 2026-03-25T20:00:18.511Z -->
|
<!-- This page `/anarchy-autism/` was built on 2026-04-21T21:31:06.783Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1416,28 +1427,29 @@ export { HeadingAnchors }</script>
|
|||||||
<img src="/img/pink-yellow-flowers.jpg" alt="Image unrelated to post. A cluster of small, four-petaled flowers, varying in color between a purpley-pink and yellow." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/pink-yellow-flowers.jpg" alt="Image unrelated to post. A cluster of small, four-petaled flowers, varying in color between a purpley-pink and yellow." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
|
||||||
<h2 id="2023">2023</h2>
|
<p>Listed by recency.</p>
|
||||||
<ul>
|
|
||||||
<li><a href="https://gallery.vashoncenterforthearts.org/event-works.php?eventId=22954&event=Summer+Arts+Fest" target="_blank" rel="external">Vashon Summer Arts Fest</a> (displayed artist)</li>
|
|
||||||
<li><a href="https://www.kremwerk.com/upcoming/2023/12/09/t4t-all-trans-and-non-brinary-drag-show" target="_blank" rel="external">T4T: All Trans and Nonbinary Drag Show</a> (vendor)</li>
|
|
||||||
</ul>
|
|
||||||
<h2 id="2024">2024</h2>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://cutiefoundation.com" target="_blank" rel="external">Cutiefest April</a> (vendor)</li>
|
|
||||||
<li><a href="https://www.pushpullseattle.com/news/stanza-2024-non-binary" target="_blank" rel="external">Stanza 2024: Non-binary</a> (displayed artist)</li>
|
|
||||||
<li><a href="https://vivartists.com/viva/events/spring-tour-2024/" target="_blank" rel="external">VIVA Spring Tour</a> (vendor)</li>
|
|
||||||
<li><a href="https://vivartists.com/viva/events/holiday-tour-2024/" target="_blank" rel="external">VIVA Holiday Tour</a> (vendor)</li>
|
|
||||||
</ul>
|
|
||||||
<h2 id="2025">2025</h2>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://www.seaf.art" target="_blank" rel="external">Seattle Erotic Art Festival</a> (displayed artist)</li>
|
|
||||||
<li><a href="https://vivartists.com/viva/events/spring-tour-2025/" target="_blank" rel="external">VIVA Spring Tour</a> (vendor)</li>
|
|
||||||
<li><a href="https://www.instagram.com/seattle.zine.fest" target="_blank" rel="external">Seattle Zine Fest</a> (vendor)</li>
|
|
||||||
<li><a href="https://beall-greenhouses-market.pages.dev/events/2025-solstice" target="_blank" rel="external">Solstice Market at Beall Greenhouses</a> (vendor, web and print marketing)</li>
|
|
||||||
</ul>
|
|
||||||
<h2 id="2026">2026</h2>
|
<h2 id="2026">2026</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://beall-greenhouses-market.pages.dev/events/2026-imbolc" target="_blank" rel="external">Imbolc Celebration & Market at Beall Greenhouses</a> (vendor, web marketing)</li>
|
<li><a href="https://beall-greenhouses-market.pages.dev/events/2026-imbolc" target="_blank" rel="external">Imbolc Celebration & Market at Beall Greenhouses</a> (vendor, web marketing)</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="2025">2025</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://beall-greenhouses-market.pages.dev/events/2025-solstice" target="_blank" rel="external">Solstice Market at Beall Greenhouses</a> (vendor, web and print marketing)</li>
|
||||||
|
<li><a href="https://www.instagram.com/seattle.zine.fest" target="_blank" rel="external">Seattle Zine Fest</a> (vendor)</li>
|
||||||
|
<li><a href="https://vivartists.com/viva/events/spring-tour-2025/" target="_blank" rel="external">VIVA Spring Tour</a> (vendor)</li>
|
||||||
|
<li><a href="https://www.seaf.art" target="_blank" rel="external">Seattle Erotic Art Festival</a> (displayed artist)</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="2024">2024</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://vivartists.com/viva/events/holiday-tour-2024/" target="_blank" rel="external">VIVA Holiday Tour</a> (vendor)</li>
|
||||||
|
<li><a href="https://vivartists.com/viva/events/spring-tour-2024/" target="_blank" rel="external">VIVA Spring Tour</a> (vendor)</li>
|
||||||
|
<li><a href="https://www.pushpullseattle.com/news/stanza-2024-non-binary" target="_blank" rel="external">Stanza 2024: Non-binary</a> (displayed artist)</li>
|
||||||
|
<li><a href="https://cutiefoundation.com" target="_blank" rel="external">Cutiefest April</a> (vendor)</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="2023">2023</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://www.kremwerk.com/upcoming/2023/12/09/t4t-all-trans-and-non-brinary-drag-show" target="_blank" rel="external">T4T: All Trans and Nonbinary Drag Show</a> (vendor)</li>
|
||||||
|
<li><a href="https://gallery.vashoncenterforthearts.org/event-works.php?eventId=22954&event=Summer+Arts+Fest" target="_blank" rel="external">Vashon Summer Arts Fest</a> (displayed artist)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@ -1503,6 +1515,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/art-shows-and-events/` was built on 2026-03-25T20:00:18.492Z -->
|
<!-- This page `/art-shows-and-events/` was built on 2026-04-21T21:31:06.791Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1475,11 +1486,29 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/seedling/">
|
<a class="postlink" href="/greeting-loons/">
|
||||||
|
|
||||||
<img src="/img/seedling-print.jpg" alt="A print of a 3-stage design of a green seedling barely open, starting to straighten up, and growing strong, with little piles of dirt beneath each one." loading="lazy" decoding="async" width="1000" height="1333">
|
<img src="/img/greeting-loons.jpg" alt="A pile of hand-printed A2 size greeting cards. A loon rearing up with outstretched wings spans the front and back of the cards." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="seedling">seedling</h2>
|
<h2 data-ha-exclude="" id="greeting-loons">greeting loons </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>highlight</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/chanterelle/">
|
||||||
|
|
||||||
|
<img src="/img/chanterelle-print.jpg" alt="A print of two chanterelle mushrooms inked in a dark-to-light yellow gradient." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="chanterelle">chanterelle </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1491,35 +1520,19 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/junco/">
|
<a class="postlink" href="/slightly-weird-man-club/">
|
||||||
|
|
||||||
<img src="/img/junco-print.jpg" alt="A print of a junco mid-takeoff from a branch. Eir head is inked in black, body in gray, and the branch in sepia." loading="lazy" decoding="async" width="1000" height="1333">
|
<img src="/img/slightly-weird-man-club-print.jpg" alt="A print that reads 'slightly weird man club' in a nonbinary flag colored gradient" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="junco">junco</h2>
|
<h2 data-ha-exclude="" id="slightly-weird-man-club">slightly weird man club </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/big-pidge/">
|
|
||||||
|
|
||||||
<img src="/img/big-pidge-print.jpg" alt="A block print of a superb speciman of pigeon, inked mostly in black but with patches of green, blue, and purple to indicate iridescence." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="big-pidge">big pidge</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>card</li>
|
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1555,6 +1568,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/artisans-cooperative-cards/` was built on 2026-03-25T20:00:18.509Z -->
|
<!-- This page `/artisans-cooperative-cards/` was built on 2026-04-21T21:31:06.778Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1476,13 +1487,37 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/shirts/">
|
<a class="postlink" href="/anarchy-autism/">
|
||||||
|
|
||||||
<img src="/img/shirts.jpg" alt="A row of shirts hanging in front of a window, with a variety of hand-printed designs." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/anarchy-autism-rainbow-print.jpg" alt="A print in rainbow ink that says autism with the anarchy A." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="shirts">shirts!</h2>
|
<h2 data-ha-exclude="" id="anarchy-autism">anarchy autism </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>sticker</li>
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
|
<li>pin</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/flicker/">
|
||||||
|
|
||||||
|
<img src="/img/flicker-print.jpg" alt="A print in black, brown, and red ink of a northern flicker (a type of woodpecker). Viewed from the back, he is looking over his shoulder and upward towards something unseen above him (my bird feeder)." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="flicker">flicker </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1490,37 +1525,19 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/kestrel-zine/">
|
<a class="postlink" href="/heron/">
|
||||||
|
|
||||||
<img src="/img/kestrel-zine.jpg" alt="A 5 photo collage showing the front and back cover as well as 3 full spreads of a folded zine about Kestrel, my dog, who is a 65lb Malinois with a goofy smile and floppy ears. it is printed in two layers of color, blue and orange, and each image depicts Kestrel in various posts... alert and watchful, resting, looking mopey, wearing a sweatshirt." loading="lazy" decoding="async" width="1000" height="1000">
|
<img src="/img/heron-print.jpg" alt="A print in black ink of a great blue heron, leaning downwards so that eir beak is level with eir feet." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="kestrel-zine">kestrel zine</h2>
|
<h2 data-ha-exclude="" id="heron">heron </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>zine</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/slightly-weird-man-club/">
|
|
||||||
|
|
||||||
<img src="/img/slightly-weird-man-club-print.jpg" alt="A print that reads 'slightly weird man club' in a nonbinary flag colored gradient" loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="slightly-weird-man-club">slightly weird man club</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1556,6 +1573,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/artisans-cooperative-shirts/` was built on 2026-03-25T20:00:18.511Z -->
|
<!-- This page `/artisans-cooperative-shirts/` was built on 2026-04-21T21:31:06.783Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1481,6 +1492,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/artists-conk/` was built on 2026-03-25T20:00:18.513Z -->
|
<!-- This page `/artists-conk/` was built on 2026-04-21T21:31:06.786Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1699,11 +1710,29 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/happy-solstice-2025/">
|
<a class="postlink" href="/gender-in-data-models/">
|
||||||
|
|
||||||
<img src="/img/solstice-2025.jpg" alt="front and back of our solstice card from this year, designed in postcard format. long alt incoming... front - 4 picture collage. 1 - i'm standing in the woods, looking to one side, wearing an elaborate knit scarf. 2 - silhouetted thistle-like flowers in front of a pink-purple sky. 3 - my wife brooke crouches down to draw a heart in charcoal on a beach log, with 'L + B' written inside. 4 - brooke stands on a driftwood-covered beach looking hella cool in mirrored shades. our dog kes stands in front of her and looks off to one side eagerly. overlaid is the words 'happy solstice' in cursive. back - split down the center like the back of a postcard. on the left side, a 5 picture collage. 1 - i stand on a rock at the edge of a calm alpine lake. overlaid is the words 'lee, brooke, kestrel, & the flock' in print lettering. 2 - an early spring fern curl. 3 - our six ducks, all facing to the left, not in a row but still very organized. 4 - brooke grins at the camera while hugging kestrel's head. kestrel looks maybe a bit distraught. 5 - silhouette of a heron in flight across an early morning blue sky. on the address side, i've added a dahlia to represent the stamp, and written 'you!' in the field that would normally hold the mailing address." loading="lazy" decoding="async" width="1000" height="1346">
|
<img src="/img/peony.jpg" alt="Image unrelated to post. A light pink peony in full bloom, close up." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="happy-solstice-2025">happy solstice 2025</h2>
|
<h2 data-ha-exclude="" id="gender-in-data-models">gender in data models </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
|
<li>software</li>
|
||||||
|
|
||||||
|
<li>highlight</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/recommendations-and-favorites/">
|
||||||
|
|
||||||
|
<img src="/img/metal-curl.jpg" alt="Photo unrelated to content of post. A metal sculpture rises up and curls into itself, with similar sculptures around it. Looking through the very center of the curve, an any-gender bathroom sign is visible." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="recommendations-and-favorites">recommendations & favorites </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>highlight</li>
|
<li>highlight</li>
|
||||||
@ -1713,28 +1742,16 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/domain-and-site-setup/">
|
<a class="postlink" href="/quorbs/">
|
||||||
|
|
||||||
<img src="/img/crinkly-mushrooms.jpg" alt="Picture unrelated to post. Some crinkly brown-orange mushrooms in vibrant green grass." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/quorbs-print.jpg" alt="A print in two layers of color showing two rotund quails on a branch. Most of the details are in black ink, then there is a layer with a brown gradient filling in some color on the head and breast." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="domain-and-site-setup">domain and site setup</h2>
|
<h2 data-ha-exclude="" id="quorbs">quorbs </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>print</li>
|
||||||
|
|
||||||
</ul>
|
<li>highlight</li>
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/handedness-toggle/">
|
|
||||||
|
|
||||||
<img src="/img/handedness-toggle-0.png" alt="A screenshot of the rescue trans rescue navbar centered on a button that shows a hand pointing left." loading="lazy" decoding="async" width="1000" height="257">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="handedness-toggle">handedness toggle</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>software</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1771,6 +1788,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/azure-locations-and-file-crawling/` was built on 2026-03-25T20:00:18.491Z -->
|
<!-- This page `/azure-locations-and-file-crawling/` was built on 2026-04-21T21:31:06.791Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1529,15 +1540,31 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/azure-locations-and-file-crawling/">
|
<a class="postlink" href="/screen-reader-optimizations/">
|
||||||
|
|
||||||
<img src="/img/azure-locations.jpg" alt="A Linux terminal. There is a fun rainbow flag in ascii art at the top, and then the user has called a command asking Azure for a list of locations applicable to a specific resource type. The output is lengthy." loading="lazy" decoding="async" width="1000" height="827">
|
<img src="/img/crow.jpg" alt="Image unrelated to post. A crow poses on driftwood against a whitish sky." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="azure-locations-and-file-crawling">azure locations and file crawling</h2>
|
<h2 data-ha-exclude="" id="screen-reader-optimizations">screen reader optimizations </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>software</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/gender-in-data-models/">
|
||||||
|
|
||||||
|
<img src="/img/peony.jpg" alt="Image unrelated to post. A light pink peony in full bloom, close up." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="gender-in-data-models">gender in data models </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
|
<li>software</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
<li>highlight</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1545,25 +1572,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/handedness-toggle/">
|
<a class="postlink" href="/intro-to-wireframing/">
|
||||||
|
|
||||||
<img src="/img/handedness-toggle-0.png" alt="A screenshot of the rescue trans rescue navbar centered on a button that shows a hand pointing left." loading="lazy" decoding="async" width="1000" height="257">
|
<img src="/img/aggregator-wireframes.jpg" alt="a figma page with 4 major sections titled aggregator, aggregator mobile, aggregator color, and aggregator mobile color. each section has 7 pages in it - all sections pretty clearly have the same 7 pages, with the mobile sections shown on mobile screens and the color sections in a rainbow of pastels rather than grayscale." loading="lazy" decoding="async" width="1000" height="1042">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="handedness-toggle">handedness toggle</h2>
|
<h2 data-ha-exclude="" id="intro-to-wireframing">intro to wireframing </h2>
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>software</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/my-favorite-git-flag/">
|
|
||||||
|
|
||||||
<img src="/img/shelf-mushrooms.jpg" alt="Picture unrelated to post. Creamy beige shelf mushrooms on a mossy tree trunk." loading="lazy" decoding="async" width="1000" height="666">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="my-favorite-git-flag">my favorite git flag</h2>
|
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>software</li>
|
||||||
@ -1603,6 +1616,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/backend-accessibility/` was built on 2026-03-25T20:00:18.499Z -->
|
<!-- This page `/backend-accessibility/` was built on 2026-04-21T21:31:06.773Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1467,34 +1478,6 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/vertical-card-wallet/">
|
|
||||||
|
|
||||||
<img src="/img/vertical-card-wallet.jpg" alt="A collage showing a hand-stitched leather card wallet with 3 card pockets and 1 interior pocket." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="vertical-card-wallet">vertical card wallet</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/makers-mark-keychain/">
|
|
||||||
|
|
||||||
<img src="/img/makers-mark-keychain.jpg" alt="A keychain on an iridescent rainbow split ring. It is dark brown/grey leather and has LEE CAT ART stamped into it." loading="lazy" decoding="async" width="1000" height="1333">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="makers-mark-keychain">maker's mark keychain</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/mom-bag/">
|
<a class="postlink" href="/mom-bag/">
|
||||||
|
|
||||||
@ -1509,6 +1492,36 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/designing-a-bag/">
|
||||||
|
|
||||||
|
<img src="/img/shoelace-bag.jpg" alt="a 3-image collage showcasing a leather crossbody bag. the leather body is brown and fairly simple. up the narrow sides, rope is laced through grommets in a style resembling a shoe lacing. the rope forms the handle and loops seamlessly through the other side of the bag, joining in one point in a figure-8 follow-through knot. At the bottom corners, there are small diagonal lines of stitching to give the bag a small lip around the base and ensure small objects don't slide out." loading="lazy" decoding="async" width="1000" height="1777">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="designing-a-bag">designing a bag </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>leather</li>
|
||||||
|
|
||||||
|
<li>software</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/mousie/">
|
||||||
|
|
||||||
|
<img src="/img/mousie.jpg" alt="A cat in a sunbeam snuggles a little leather mouse-shaped cat toy." loading="lazy" decoding="async" width="1000" height="1499">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="mousie">mousie </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>leather</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1540,6 +1553,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/bag-strap/` was built on 2026-03-25T20:00:18.513Z -->
|
<!-- This page `/bag-strap/` was built on 2026-04-21T21:31:06.787Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1478,11 +1489,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/lined-notebook/">
|
<a class="postlink" href="/leather-strap-journal/">
|
||||||
|
|
||||||
<img src="/img/lined-notebook.jpg" alt="A three panel collage showing a the endpapers, cover, and pages of a small hardbound notebook." loading="lazy" decoding="async" width="1000" height="1776">
|
<img src="/img/leather-strap-journal.jpg" alt="A 3-part collage showing a blue journal with leather straps woven into the covers." loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="lined-notebook">lined notebook</h2>
|
<h2 data-ha-exclude="" id="leather-strap-journal">leather strap journal </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>book</li>
|
<li>book</li>
|
||||||
@ -1492,13 +1503,15 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/flocked-notebook/">
|
<a class="postlink" href="/leather-long-stitch-journals/">
|
||||||
|
|
||||||
<img src="/img/flocked-notebook.jpg" alt="A two panel collage showing the cover and endpapers of a thick notebook." loading="lazy" decoding="async" width="1000" height="1331">
|
<img src="/img/long-stitch-journals.jpg" alt="A stack of hand-bound journals showing long stitches aligned with the spines. They are leather bound and have tie closures." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="flocked-notebook">flocked notebook</h2>
|
<h2 data-ha-exclude="" id="leather-long-stitch-journals">leather long-stitch journals </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>leather</li>
|
||||||
|
|
||||||
<li>book</li>
|
<li>book</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1506,11 +1519,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/green-memo-pad/">
|
<a class="postlink" href="/acadia-coloring-journal/">
|
||||||
|
|
||||||
<img src="/img/green-memo-pad.jpg" alt="A three panel collage showcasing a small green memo pad." loading="lazy" decoding="async" width="1000" height="1776">
|
<img src="/img/acadia-coloring-journal.jpg" alt="A five panel collage showcasing a book that is part graph papers of various sizes, and part coloring pages based on Acadia National Park." loading="lazy" decoding="async" width="1000" height="562">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="green-memo-pad">green memo pad</h2>
|
<h2 data-ha-exclude="" id="acadia-coloring-journal">Acadia coloring journal </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>book</li>
|
<li>book</li>
|
||||||
@ -1550,6 +1563,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/baseball-journal/` was built on 2026-03-25T20:00:18.507Z -->
|
<!-- This page `/baseball-journal/` was built on 2026-04-21T21:31:06.776Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1474,38 +1485,6 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/five-of-them/">
|
|
||||||
|
|
||||||
<img src="/img/five-of-them-print.jpg" alt="A block print of five mule deer grazing in a dark green field. The deer are partially negative space and partially brown ink detailing." loading="lazy" decoding="async" width="1000" height="594">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="five-of-them">five of them</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>shirt</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/spotted-towhee/">
|
|
||||||
|
|
||||||
<img src="/img/spotted-towhee-print.jpg" alt="A block print of a spotted towhee mid-leap." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="spotted-towhee">spotted towhee</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>card</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/greeting-loons/">
|
<a class="postlink" href="/greeting-loons/">
|
||||||
|
|
||||||
@ -1524,6 +1503,40 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/fat-raccoon/">
|
||||||
|
|
||||||
|
<img src="/img/fat-raccoon-print.jpg" alt="A block print in black ink of a rotund raccoon raising a welcoming paw towards the viewer." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="fat-raccoon">fat raccoon </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/artisans-cooperative-shirts/">
|
||||||
|
|
||||||
|
<img src="/img/artisans-coop-shirt.jpg" alt="A black tank top laid on a desk. In white ink it reads 'Artisans Cooperative' with a print of some chickens and a quail." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="artisans-cooperative-shirts">artisans cooperative shirts </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1555,6 +1568,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/become-unbutterable/` was built on 2026-03-25T20:00:18.477Z -->
|
<!-- This page `/become-unbutterable/` was built on 2026-04-21T21:31:06.758Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,11 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/fire-and-ice-handspun/">
|
<a class="postlink" href="/ruby-the-alpaca-handspun/">
|
||||||
|
|
||||||
<img src="/img/fire-ice-handspun.jpg" alt="2 skeins, one large and one small, of a heathered orange yarn with hints of blue in about a DK or worsted weight." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/ruby-alpaca-handspun.jpg" alt="one large skein and two smaller skeins of a rich chocolatey brown alpaca handspun, in about a DK weight" loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="fire-and-ice-handspun">fire & ice handspun</h2>
|
<h2 data-ha-exclude="" id="ruby-the-alpaca-handspun">ruby the alpaca handspun </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>yarn</li>
|
<li>yarn</li>
|
||||||
@ -1482,11 +1493,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/petrichor-handspun/">
|
<a class="postlink" href="/orion-handspun/">
|
||||||
|
|
||||||
<img src="/img/petrichor-handspun.jpg" alt="3 skeins of handspun yarn, 2 large and 1 small. the large ones are a rich earth-tone blend of reds, pinks, browns, and hints of green and gold. the smaller skein is similar but with a decidedly greener hue" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/orion-handspun.jpg" alt="3 skeins of handspun yarn, 1 large and 2 small. One of the small skeins is a little more inconsistent weight than the other two - this one was spun on drop spindle about 2 years ago. The other two are about a sport or maybe a DK weight. All three are a gold colorway with tiny hints of orange and a pale light green." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="petrichor-handspun">petrichor handspun</h2>
|
<h2 data-ha-exclude="" id="orion-handspun">orion handspun </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>yarn</li>
|
<li>yarn</li>
|
||||||
@ -1496,11 +1507,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/light-grey-jacobs-handspun/">
|
<a class="postlink" href="/handcombed-jacobs-handspun/">
|
||||||
|
|
||||||
<img src="/img/light-grey-jacobs.jpg" alt="a skein of light grey handspun yarn" loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/handcombed-jacobs.jpg" alt="a skein of dark grey handspun yarn" loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="light-grey-jacobs-handspun">light grey jacobs handspun</h2>
|
<h2 data-ha-exclude="" id="handcombed-jacobs-handspun">handcombed jacobs handspun </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>yarn</li>
|
<li>yarn</li>
|
||||||
@ -1540,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/bfl-silk-handspun/` was built on 2026-03-25T20:00:18.517Z -->
|
<!-- This page `/bfl-silk-handspun/` was built on 2026-04-21T21:31:06.795Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1485,16 +1496,26 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/hummingbird-become-ungovernable/">
|
<a class="postlink" href="/become-unbutterable/">
|
||||||
|
|
||||||
<img src="/img/hummingbird-ungovernable-print.jpg" alt="A block print in black and orange ink of a rufous hummingbird, tail flared, hovering in midair. Clutched in eir tiny claws is a banner that waves in the wind and reads 'become ungovernable'" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/become-unbutterable.jpg" alt="3 copies of the same stamp in orange ink are spread out next to the hand carved rubber stamp they were made from. They show a cat lying on his back with paws curled, holding a butter knife in his mouth. Text around the cat reads, in all caps, 'become unbutterable.'" loading="lazy" decoding="async" width="1000" height="562">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="hummingbird-become-ungovernable">hummingbird become ungovernable</h2>
|
<h2 data-ha-exclude="" id="become-unbutterable">become unbutterable </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/shirts/">
|
||||||
|
|
||||||
|
<img src="/img/shirts.jpg" alt="A row of shirts hanging in front of a window, with a variety of hand-printed designs." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="shirts">shirts! </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
@ -1503,37 +1524,17 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/lupine/">
|
<a class="postlink" href="/seedling/">
|
||||||
|
|
||||||
<img src="/img/lupine-prints.jpg" alt="6 versions of a print of lupine flowers with the leaves inked in light green and the blossoms inked in a variety of blues, purples, and pinks." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/seedling-print.jpg" alt="A print of a 3-stage design of a green seedling barely open, starting to straighten up, and growing strong, with little piles of dirt beneath each one." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="lupine">lupine</h2>
|
<h2 data-ha-exclude="" id="seedling">seedling </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/trans-the-world/">
|
|
||||||
|
|
||||||
<img src="/img/trans-the-world-print.jpg" alt="A print that reads 'trans the world' surrounding an image of a globe and a trans symbol. It's in a ping-to-blue gradient." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="trans-the-world">trans the world</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>shirt</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1569,6 +1570,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/big-pidge/` was built on 2026-03-25T20:00:18.506Z -->
|
<!-- This page `/big-pidge/` was built on 2026-04-21T21:31:06.774Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1521,6 +1532,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/block-printing-transfer-method/` was built on 2026-03-25T20:00:18.499Z -->
|
<!-- This page `/block-printing-transfer-method/` was built on 2026-04-21T21:31:06.773Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1484,11 +1495,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/lined-notebook/">
|
<a class="postlink" href="/tiny-books/">
|
||||||
|
|
||||||
<img src="/img/lined-notebook.jpg" alt="A three panel collage showing a the endpapers, cover, and pages of a small hardbound notebook." loading="lazy" decoding="async" width="1000" height="1776">
|
<img src="/img/tiny-book.jpg" alt="A three panel collage showing a book held in the palm of a hand." loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="lined-notebook">lined notebook</h2>
|
<h2 data-ha-exclude="" id="tiny-books">tiny books </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>book</li>
|
<li>book</li>
|
||||||
@ -1498,31 +1509,27 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/brookes-notebook/">
|
<a class="postlink" href="/orange-journal/">
|
||||||
|
|
||||||
<img src="/img/brooke-notebook.jpg" alt="A six panel collage showing the covers, endpapers, and some of the pages of a notebook." loading="lazy" decoding="async" width="1000" height="1500">
|
<img src="/img/orange-journal.jpg" alt="A three panel collage showcasing a small book with foldout pages and a bright orange cover." loading="lazy" decoding="async" width="1000" height="1776">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="brookes-notebook">brooke's notebook</h2>
|
<h2 data-ha-exclude="" id="orange-journal">orange journal </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>book</li>
|
<li>book</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/leather-long-stitch-journals/">
|
<a class="postlink" href="/stampede-journal/">
|
||||||
|
|
||||||
<img src="/img/long-stitch-journals.jpg" alt="A stack of hand-bound journals showing long stitches aligned with the spines. They are leather bound and have tie closures." loading="lazy" decoding="async" width="1000" height="1333">
|
<img src="/img/stampede-journal.jpg" alt="A 4-part collage of a hardcover book, showing a coloring page with 'stampede!' written across it." loading="lazy" decoding="async" width="1000" height="1777">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="leather-long-stitch-journals">leather long-stitch journals</h2>
|
<h2 data-ha-exclude="" id="stampede-journal">stampede journal </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
<li>book</li>
|
<li>book</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1560,6 +1567,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/blue-and-brown-leather-journal/` was built on 2026-03-25T20:00:18.478Z -->
|
<!-- This page `/blue-and-brown-leather-journal/` was built on 2026-04-21T21:31:06.759Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1477,36 +1488,6 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/fix-your-hearts/">
|
|
||||||
|
|
||||||
<img src="/img/fix-your-hearts-print.jpg" alt="2 copies of the same print, one in black ink and one in dark teal. The print is text that reads 'fix your hearts or die', with the text shaped into a somewhat long and narrow heart." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="fix-your-hearts">fix your hearts</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/quorbs/">
|
|
||||||
|
|
||||||
<img src="/img/quorbs-print.jpg" alt="A print in two layers of color showing two rotund quails on a branch. Most of the details are in black ink, then there is a layer with a brown gradient filling in some color on the head and breast." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="quorbs">quorbs</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/loon/">
|
<a class="postlink" href="/loon/">
|
||||||
|
|
||||||
@ -1521,6 +1502,38 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/artisans-cooperative-cards/">
|
||||||
|
|
||||||
|
<img src="/img/artisans-coop-cards.jpg" alt="2 white greeting cards with the Artisans Cooperative logo, a chicken. One card has a single print of the chicken in black ink, and the other has two overlapping prints in blue and red ink" loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="artisans-cooperative-cards">artisans cooperative cards </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/congrats-on-the-autism-adhd/">
|
||||||
|
|
||||||
|
<img src="/img/congrats-on-the.jpg" alt="4 greeting cards propped up on a keyboard. On the right hand side, two cards read 'Congrats on the Autism'; one in rainbow ink and one in black ink with a glittery gold shadow. On the left, two cards read 'Congrats on the ADHD'; one in red and one in black, both with glittery pink shadows." loading="lazy" decoding="async" width="1000" height="562">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="congrats-on-the-autism-adhd">congrats on the autism/adhd </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1552,6 +1565,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/booby-congrats-on-the-top-surgery/` was built on 2026-03-25T20:00:18.486Z -->
|
<!-- This page `/booby-congrats-on-the-top-surgery/` was built on 2026-04-21T21:31:06.767Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1473,29 +1484,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/happy-bihrtday/">
|
<a class="postlink" href="/congrats-on-the-autism-adhd/">
|
||||||
|
|
||||||
<img src="/img/happy-bihrtday-card-print.jpg" alt="A card and print in the same design - a bouncy, cheery font reading 'happy biHRTday'" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/congrats-on-the.jpg" alt="4 greeting cards propped up on a keyboard. On the right hand side, two cards read 'Congrats on the Autism'; one in rainbow ink and one in black ink with a glittery gold shadow. On the left, two cards read 'Congrats on the ADHD'; one in red and one in black, both with glittery pink shadows." loading="lazy" decoding="async" width="1000" height="562">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="happy-bihrtday">happy biHRTday</h2>
|
<h2 data-ha-exclude="" id="congrats-on-the-autism-adhd">congrats on the autism/adhd </h2>
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>card</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/chanterelle/">
|
|
||||||
|
|
||||||
<img src="/img/chanterelle-print.jpg" alt="A print of two chanterelle mushrooms inked in a dark-to-light yellow gradient." loading="lazy" decoding="async" width="1000" height="1333">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="chanterelle">chanterelle</h2>
|
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1507,15 +1500,33 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/loon/">
|
<a class="postlink" href="/artisans-cooperative-shirts/">
|
||||||
|
|
||||||
<img src="/img/loon-print.jpg" alt="A print of a loon rearing up with wings spread" loading="lazy" decoding="async" width="1000" height="1333">
|
<img src="/img/artisans-coop-shirt.jpg" alt="A black tank top laid on a desk. In white ink it reads 'Artisans Cooperative' with a print of some chickens and a quail." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="loon">loon</h2>
|
<h2 data-ha-exclude="" id="artisans-cooperative-shirts">artisans cooperative shirts </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/flatfish/">
|
||||||
|
|
||||||
|
<img src="/img/flatfish-print.jpg" alt="A print of a simple flatfish design inked in sepia." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="flatfish">flatfish </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1551,6 +1562,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/bottom-growth/` was built on 2026-03-25T20:00:18.483Z -->
|
<!-- This page `/bottom-growth/` was built on 2026-04-21T21:31:06.764Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1467,6 +1478,34 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/lobstah/">
|
||||||
|
|
||||||
|
<img src="/img/lobstah.jpg" alt="Two red leather lobster ornaments, about 4-5 in long each." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="lobstah">lobstah </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>leather</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/foldy-wallet/">
|
||||||
|
|
||||||
|
<img src="/img/foldy-wallet.jpg" alt="A four part collage showing a single piece of deep red leather folding up to become a card wallet." loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="foldy-wallet">foldy wallet </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>leather</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/shrimp-cat-toy/">
|
<a class="postlink" href="/shrimp-cat-toy/">
|
||||||
|
|
||||||
@ -1481,36 +1520,6 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/tooled-leather-patches/">
|
|
||||||
|
|
||||||
<img src="/img/pronoun-patch-scroll.jpg" alt="two tooled leather patches. they have scrolls tooled on them that read various pronoun sets." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="tooled-leather-patches">tooled leather patches</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/brookes-cuff-bracelets/">
|
|
||||||
|
|
||||||
<img src="/img/brooke-cuffs.jpg" alt="Olive green leather cuffs with silver spikes and a shearling lining." loading="lazy" decoding="async" width="900" height="1200">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="brookes-cuff-bracelets">brooke's cuff bracelets</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1542,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/bowtie/` was built on 2026-03-25T20:00:18.484Z -->
|
<!-- This page `/bowtie/` was built on 2026-04-21T21:31:06.765Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1495,11 +1506,39 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/trans-wrongs-skull/">
|
<a class="postlink" href="/brown-creeper/">
|
||||||
|
|
||||||
<img src="/img/trans-wrongs-print.jpg" alt="A smiling skull with devil horns and a little spiked tail, and a speech bubble reading 'trans wrongs!'" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/brown-creeper-print.jpg" alt="2 copies of the same print side by side. In yellow, black, and purple ink, a brown creeper, a small bird, is depicted, well camouflaged against a tree trunk." loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="trans-wrongs-skull">trans wrongs skull</h2>
|
<h2 data-ha-exclude="" id="brown-creeper">brown creeper </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/on-the-ubiquity-of-enby/">
|
||||||
|
|
||||||
|
<img src="/img/gender-census.jpg" alt="A screenshot of part of the Gender Census reports page, showing the header bar and a title that reads 'Gender Census 2023 Worldwide Report'" loading="lazy" decoding="async" width="1000" height="364">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="on-the-ubiquity-of-enby">on the ubiquity of 'enby' </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/trans-rights-skull/">
|
||||||
|
|
||||||
|
<img src="/img/trans-rights-print.jpg" alt="A print in mostly black ink of a smiling skull with a speech bubble. In pink and blue, the speech bubble reads 'trans rights!'" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="trans-rights-skull">trans rights skull </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1516,38 +1555,6 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/coming-out/">
|
|
||||||
|
|
||||||
<img src="/img/coming-out-card-print.jpg" alt="A card and print in the same design - a chick and a broken eggshell, and a simple font reading 'congrats on coming out of your shell'" loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="coming-out">coming out</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>card</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/fd-signifier-and-oppositional-sexism/">
|
|
||||||
|
|
||||||
<img src="/img/sheep.jpg" alt="Image unrelated to post. A mama sheep with two babies curled up next to her in a grassy field." loading="lazy" decoding="async" width="1000" height="450">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="fd-signifier-and-oppositional-sexism">fd signifier & oppositional sexism</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1579,6 +1586,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/boypussy/` was built on 2026-03-25T20:00:18.510Z -->
|
<!-- This page `/boypussy/` was built on 2026-04-21T21:31:06.779Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,11 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/vertical-zipper-card-wallet/">
|
<a class="postlink" href="/bowtie/">
|
||||||
|
|
||||||
<img src="/img/vertical-zipper-card-wallet.jpg" alt="A collage showing a hand-stitched leather card wallet with 3 card pockets, a hidden pocket, and a zippered coin pouch." loading="lazy" decoding="async" width="1000" height="1000">
|
<img src="/img/bowtie.jpg" alt="A black leather bow tie with black stitching." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="vertical-zipper-card-wallet">vertical zipper card wallet</h2>
|
<h2 data-ha-exclude="" id="bowtie">bowtie </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1482,11 +1493,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/pinatex-wallet-with-zipper/">
|
<a class="postlink" href="/shrimp-cat-toy/">
|
||||||
|
|
||||||
<img src="/img/pinatex-ten-pocket-bifold.jpg" alt="A two-picture collage showing the inside and outside of a wallet made with piñatex, a leather alternative made from pineapple leaves. It is two tone blue with a pink accent and has a zippered pocket built in." loading="lazy" decoding="async" width="1000" height="1331">
|
<img src="/img/two-shrimp.jpg" alt="Two leather shrimp-shaped cat toys. They have long dangly antennae and are stitched in red and orange." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="pinatex-wallet-with-zipper">piñatex wallet with zipper</h2>
|
<h2 data-ha-exclude="" id="shrimp-cat-toy">shrimp cat toy </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1496,17 +1507,15 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/dragon-mask/">
|
<a class="postlink" href="/rachels-bracelets/">
|
||||||
|
|
||||||
<img src="/img/dragon-mask.jpg" alt="lee (a white person with glasses and a side shave) holds up a leather dragon mask in black and dark green. ze sticks hir tongue out at it." loading="lazy" decoding="async" width="1000" height="746">
|
<img src="/img/rachel-bracelets.jpg" alt="Two pink leather bracelets with stainless steel hardware and aqua stitching." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="dragon-mask">dragon mask</h2>
|
<h2 data-ha-exclude="" id="rachels-bracelets">rachel's bracelets </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1542,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/brookes-collar/` was built on 2026-03-25T20:00:18.514Z -->
|
<!-- This page `/brookes-collar/` was built on 2026-04-21T21:31:06.787Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,11 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/zipper-bifold/">
|
<a class="postlink" href="/leather-lighter-case/">
|
||||||
|
|
||||||
<img src="/img/zipper-bifold.jpg" alt="A collage showing a hand-stitched leather bifold with a zippered coin pocket on one exterior side." loading="lazy" decoding="async" width="1000" height="1777">
|
<img src="/img/leather-lighter-case.jpg" alt="A bic lighter wrapped in leather and hand-stitched up one side." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="zipper-bifold">zipper bifold</h2>
|
<h2 data-ha-exclude="" id="leather-lighter-case">leather lighter case </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1496,17 +1507,15 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/little-critter-pouch/">
|
<a class="postlink" href="/swoop-wallet/">
|
||||||
|
|
||||||
<img src="/img/little-critter-pouch.jpg" alt="A leather pouch shaped a bit like a d10 but with eight sides. It has a rainbow zippered opening and a wristlet strap." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/swoop-wallet.jpg" alt="A collage showing 3 pictures of a red and brown leather card wallet. The red pocket separator folds around to the back to become a fetching curlicue." loading="lazy" decoding="async" width="900" height="1200">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="little-critter-pouch">little critter pouch</h2>
|
<h2 data-ha-exclude="" id="swoop-wallet">swoop wallet </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1542,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/brookes-cuff-bracelets/` was built on 2026-03-25T20:00:18.482Z -->
|
<!-- This page `/brookes-cuff-bracelets/` was built on 2026-04-21T21:31:06.763Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1483,11 +1494,29 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/little-critter-pouch/">
|
<a class="postlink" href="/greeting-loons/">
|
||||||
|
|
||||||
<img src="/img/little-critter-pouch.jpg" alt="A leather pouch shaped a bit like a d10 but with eight sides. It has a rainbow zippered opening and a wristlet strap." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/greeting-loons.jpg" alt="A pile of hand-printed A2 size greeting cards. A loon rearing up with outstretched wings spans the front and back of the cards." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="little-critter-pouch">little critter pouch</h2>
|
<h2 data-ha-exclude="" id="greeting-loons">greeting loons </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>highlight</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/dragon-mask/">
|
||||||
|
|
||||||
|
<img src="/img/dragon-mask.jpg" alt="lee (a white person with glasses and a side shave) holds up a leather dragon mask in black and dark green. ze sticks hir tongue out at it." loading="lazy" decoding="async" width="1000" height="746">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="dragon-mask">dragon mask </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1499,32 +1528,14 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/butch-hands-pattern/">
|
<a class="postlink" href="/striped-journal/">
|
||||||
|
|
||||||
<img src="/img/butch-hands.jpg" alt="Hands wearing a pair of pink and grey gloves with convertable mitten tops." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/striped-journal.jpg" alt="A three panel collage showcasing a journal with a striped cover." loading="lazy" decoding="async" width="1000" height="1776">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="butch-hands-pattern">butch hands pattern</h2>
|
<h2 data-ha-exclude="" id="striped-journal">striped journal </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>knit</li>
|
<li>book</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/quorbs/">
|
|
||||||
|
|
||||||
<img src="/img/quorbs-print.jpg" alt="A print in two layers of color showing two rotund quails on a branch. Most of the details are in black ink, then there is a layer with a brown gradient filling in some color on the head and breast." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="quorbs">quorbs</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1561,6 +1572,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/brookes-notebook/` was built on 2026-03-25T20:00:18.480Z -->
|
<!-- This page `/brookes-notebook/` was built on 2026-04-21T21:31:06.761Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1475,11 +1486,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/sideways-canvas-shirt/">
|
<a class="postlink" href="/brookes-socks/">
|
||||||
|
|
||||||
<img src="/img/sideways-canvas.jpg" alt="someone's torso in a knitted short sleeve shirt. the front is teal, and the bit of back we can see is mustard yellow. looking closely, it's notable that the stitches are turned 90 degrees from a standard knit garment." loading="lazy" decoding="async" width="1000" height="1338">
|
<img src="/img/brooke-socks.jpg" alt="Feet in a pair of colorful socks. They are identically striped and quickly vary between yellow, green, blue, white, and gray." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="sideways-canvas-shirt">sideways canvas shirt</h2>
|
<h2 data-ha-exclude="" id="brookes-socks">brooke's socks </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>knit</li>
|
<li>knit</li>
|
||||||
@ -1489,11 +1500,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/acadia-mitts/">
|
<a class="postlink" href="/pink-socks/">
|
||||||
|
|
||||||
<img src="/img/acadia-mitts.jpg" alt="a hand wearing a knitted fingerless mitten. it's knit in a slubby, almost tweedy yarn, with the body being blue grey stockinette and the cuffs and tips a vibrant green rib." loading="lazy" decoding="async" width="1000" height="1000">
|
<img src="/img/pink-socks.jpg" alt="Feet propped up on a car dashboard, with a desert landscape beyond. The feet are in salmon-colored socks with black flecks, and decorative lines running down the socks." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="acadia-mitts">acadia mitts</h2>
|
<h2 data-ha-exclude="" id="pink-socks">pink socks </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>knit</li>
|
<li>knit</li>
|
||||||
@ -1503,17 +1514,15 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/butch-hands-pattern/">
|
<a class="postlink" href="/knit-shrimp/">
|
||||||
|
|
||||||
<img src="/img/butch-hands.jpg" alt="Hands wearing a pair of pink and grey gloves with convertable mitten tops." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/knit-shrimp.jpg" alt="Four knitted shrimp in various shades of pink. They are all somewhere around hand-sized, and have little yarn antennae and leggies." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="butch-hands-pattern">butch hands pattern</h2>
|
<h2 data-ha-exclude="" id="knit-shrimp">knit shrimp </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>knit</li>
|
<li>knit</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1549,6 +1558,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/brookes-scarf/` was built on 2026-03-25T20:00:18.495Z -->
|
<!-- This page `/brookes-scarf/` was built on 2026-04-21T21:31:06.793Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1467,6 +1478,36 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/knit-shrimp/">
|
||||||
|
|
||||||
|
<img src="/img/knit-shrimp.jpg" alt="Four knitted shrimp in various shades of pink. They are all somewhere around hand-sized, and have little yarn antennae and leggies." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="knit-shrimp">knit shrimp </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>knit</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/butch-hands-pattern/">
|
||||||
|
|
||||||
|
<img src="/img/butch-hands.jpg" alt="Hands wearing a pair of pink and grey gloves with convertable mitten tops." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="butch-hands-pattern">butch hands pattern </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>knit</li>
|
||||||
|
|
||||||
|
<li>highlight</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/acadia-mitts/">
|
<a class="postlink" href="/acadia-mitts/">
|
||||||
|
|
||||||
@ -1481,36 +1522,6 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/sideways-canvas-shirt/">
|
|
||||||
|
|
||||||
<img src="/img/sideways-canvas.jpg" alt="someone's torso in a knitted short sleeve shirt. the front is teal, and the bit of back we can see is mustard yellow. looking closely, it's notable that the stitches are turned 90 degrees from a standard knit garment." loading="lazy" decoding="async" width="1000" height="1338">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="sideways-canvas-shirt">sideways canvas shirt</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>knit</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/pride-dice-bags/">
|
|
||||||
|
|
||||||
<img src="/img/pride-dice-bags.jpg" alt="Several knitted drawstring dice bags sit in front of a bookshelf. They are in different pride flag colors; from right to left (skipping a few duplicates) bisexual, lesbian, nonbinary, trans, and genderqueer. The trans-colored dice bag in the center opens towards the camera, showing a variety of colorful dice inside." loading="lazy" decoding="async" width="1000" height="500">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="pride-dice-bags">pride dice bags</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>knit</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1542,6 +1553,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/brookes-socks/` was built on 2026-03-25T20:00:18.480Z -->
|
<!-- This page `/brookes-socks/` was built on 2026-04-21T21:31:06.761Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,11 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/nine-pocket-bifold/">
|
<a class="postlink" href="/gradient-purse-strap/">
|
||||||
|
|
||||||
<img src="/img/nine-pocket-bifold.jpg" alt="A hand stitched full grain leather bifold wallet in dark plum leather. It has a main bill pocket and a symmetrical interior with a hidden pocket and 3 card pockets on each side." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/gradient-purse-strap.jpg" alt="a coiled up purse strap in gradient cool colors - we can see green, teal, indigo, and a slightly pinkish purple. It has brass hardware and is stiched along its length with cream stitches." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="nine-pocket-bifold">nine pocket bifold</h2>
|
<h2 data-ha-exclude="" id="gradient-purse-strap">gradient purse strap </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1482,11 +1493,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/zipper-bifold/">
|
<a class="postlink" href="/vertical-card-wallet/">
|
||||||
|
|
||||||
<img src="/img/zipper-bifold.jpg" alt="A collage showing a hand-stitched leather bifold with a zippered coin pocket on one exterior side." loading="lazy" decoding="async" width="1000" height="1777">
|
<img src="/img/vertical-card-wallet.jpg" alt="A collage showing a hand-stitched leather card wallet with 3 card pockets and 1 interior pocket." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="zipper-bifold">zipper bifold</h2>
|
<h2 data-ha-exclude="" id="vertical-card-wallet">vertical card wallet </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1496,11 +1507,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/x-acto-knife-sheath/">
|
<a class="postlink" href="/bowtie/">
|
||||||
|
|
||||||
<img src="/img/knife-sheaths.jpg" alt="Several blades with leather sheaths, and a few extra sheaths. There's a #2 blade with an orange sheath with yellow stitching, a #11 blade with a blue sheath with light grey stitching, and a skiving knife with a plum sheath and pink stitching." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/bowtie.jpg" alt="A black leather bow tie with black stitching." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="x-acto-knife-sheath">x-acto knife sheath</h2>
|
<h2 data-ha-exclude="" id="bowtie">bowtie </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1540,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/brookes-suspenders/` was built on 2026-03-25T20:00:18.494Z -->
|
<!-- This page `/brookes-suspenders/` was built on 2026-04-21T21:31:06.792Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1469,50 +1480,50 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/foxgloves/">
|
<a class="postlink" href="/congrats-on-the-gay/">
|
||||||
|
|
||||||
<img src="/img/foxgloves-print.jpg" alt="A print of a cluster of foxgloves. The background is inked in green, with negative space and pink details making up the foxgloves." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/congrats-on-the-gay.jpg" alt="A greeting card reading, in black. 'Congrats on the,' and then, in rainbow, 'Gay!'" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="foxgloves">foxgloves</h2>
|
<h2 data-ha-exclude="" id="congrats-on-the-gay">congrats on the gay </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/greeting-loons/">
|
<a class="postlink" href="/tiny-mushrooms/">
|
||||||
|
|
||||||
<img src="/img/greeting-loons.jpg" alt="A pile of hand-printed A2 size greeting cards. A loon rearing up with outstretched wings spans the front and back of the cards." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/pixels-mushrooms.jpg" alt="3 tiny mushroom stamps next to their impressions. They are all about 1 inch square. There is a chanterelle in yellow, a russula in pink, and witch's hat mycena in indigo." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="greeting-loons">greeting loons</h2>
|
<h2 data-ha-exclude="" id="tiny-mushrooms">tiny mushrooms </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/happy-bihrtday/">
|
||||||
|
|
||||||
|
<img src="/img/happy-bihrtday-card-print.jpg" alt="A card and print in the same design - a bouncy, cheery font reading 'happy biHRTday'" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="happy-bihrtday">happy biHRTday </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>print</li>
|
<li>gender</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/tiny-portraits/">
|
|
||||||
|
|
||||||
<img src="/img/tiny-portrait-stamps.jpg" alt="A collage showing various small (around an inch) stamps that depict people or animals." loading="lazy" decoding="async" width="1000" height="1000">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="tiny-portraits">tiny portraits</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1549,6 +1560,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/brown-creeper/` was built on 2026-03-25T20:00:18.488Z -->
|
<!-- This page `/brown-creeper/` was built on 2026-04-21T21:31:06.769Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1549,20 +1560,6 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/brookes-socks/">
|
|
||||||
|
|
||||||
<img src="/img/brooke-socks.jpg" alt="Feet in a pair of colorful socks. They are identically striped and quickly vary between yellow, green, blue, white, and gray." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="brookes-socks">brooke's socks</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>knit</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/keffiyah-fishing-net-pattern/">
|
<a class="postlink" href="/keffiyah-fishing-net-pattern/">
|
||||||
|
|
||||||
@ -1578,16 +1575,30 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/gender-in-data-models/">
|
<a class="postlink" href="/brookes-notebook/">
|
||||||
|
|
||||||
<img src="/img/peony.jpg" alt="Image unrelated to post. A light pink peony in full bloom, close up." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/brooke-notebook.jpg" alt="A six panel collage showing the covers, endpapers, and some of the pages of a notebook." loading="lazy" decoding="async" width="1000" height="1500">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="gender-in-data-models">gender in data models</h2>
|
<h2 data-ha-exclude="" id="brookes-notebook">brooke's notebook </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>gender</li>
|
<li>book</li>
|
||||||
|
|
||||||
<li>software</li>
|
<li>highlight</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/textures-unite/">
|
||||||
|
|
||||||
|
<img src="/img/textures-unite.jpg" alt="a largely unseen person holds up an expansive knitted shawl, built in 6 sections of different textures and colors. in the background, trees and dappled sunlight." loading="lazy" decoding="async" width="1000" height="1334">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="textures-unite">textures unite </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>knit</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
<li>highlight</li>
|
||||||
|
|
||||||
@ -1626,6 +1637,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/butch-hands-pattern/` was built on 2026-03-25T20:00:18.497Z -->
|
<!-- This page `/butch-hands-pattern/` was built on 2026-04-21T21:31:06.770Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1480,49 +1491,51 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/geese-trans-wrongs/">
|
<a class="postlink" href="/stellars-jay/">
|
||||||
|
|
||||||
<img src="/img/trans-wrongs-geese-print.jpg" alt="Two Canada geese and their reflections in the water. One is calmly swimming away, while the over leans over towards them and HONKS! Both have speech bubbles; the calm goose says 'trans rights!' while the honking goose says 'trans wrongs!'" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/stellars-jay-print.jpg" alt="A print of a stellar's jay, a beautiful black and blue bird, about to take off from a branch" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="geese-trans-wrongs">geese/trans wrongs</h2>
|
<h2 data-ha-exclude="" id="stellars-jay">stellar's jay </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>gender</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/fix-your-hearts/">
|
<a class="postlink" href="/lupine/">
|
||||||
|
|
||||||
<img src="/img/fix-your-hearts-print.jpg" alt="2 copies of the same print, one in black ink and one in dark teal. The print is text that reads 'fix your hearts or die', with the text shaped into a somewhat long and narrow heart." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/lupine-prints.jpg" alt="6 versions of a print of lupine flowers with the leaves inked in light green and the blossoms inked in a variety of blues, purples, and pinks." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="fix-your-hearts">fix your hearts</h2>
|
<h2 data-ha-exclude="" id="lupine">lupine </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/five-of-them/">
|
<a class="postlink" href="/crow/">
|
||||||
|
|
||||||
<img src="/img/five-of-them-print.jpg" alt="A block print of five mule deer grazing in a dark green field. The deer are partially negative space and partially brown ink detailing." loading="lazy" decoding="async" width="1000" height="594">
|
<img src="/img/crow-print.jpg" alt="a block print in dark indigo ink on white paper depicting a perched crow looking over one shoulder. one side of the crow is lit with fine feather detail, and the other side is almost entirely in shadow." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="five-of-them">five of them</h2>
|
<h2 data-ha-exclude="" id="crow">crow </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1558,6 +1571,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/chanterelle/` was built on 2026-03-25T20:00:18.497Z -->
|
<!-- This page `/chanterelle/` was built on 2026-04-21T21:31:06.770Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,25 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/bfl-silk-handspun/">
|
<a class="postlink" href="/fire-and-ice-handspun/">
|
||||||
|
|
||||||
<img src="/img/bfl-silk-handspun.jpg" alt="a spinning wheel bobbin full of undyed white handspun yarn in about a sport or DK weight." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/fire-ice-handspun.jpg" alt="2 skeins, one large and one small, of a heathered orange yarn with hints of blue in about a DK or worsted weight." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="bfl-silk-handspun">BFL/silk handspun</h2>
|
<h2 data-ha-exclude="" id="fire-and-ice-handspun">fire & ice handspun </h2>
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>yarn</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/hand-dyed-gold-handspun/">
|
|
||||||
|
|
||||||
<img src="/img/gold-handspun.jpg" alt="3 skeins, one small and two large, of a rich golden-orange handspun with light tonal effects, in about a DK weight" loading="lazy" decoding="async" width="1000" height="666">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="hand-dyed-gold-handspun">hand-dyed gold handspun</h2>
|
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>yarn</li>
|
<li>yarn</li>
|
||||||
@ -1509,6 +1506,20 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/spinners-dream-handspun/">
|
||||||
|
|
||||||
|
<img src="/img/spinners-dream-handspun.jpg" alt="a skein of a lightly variegated grey yarn in about a sport or DK weight." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="spinners-dream-handspun">spinner's dream handspun </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>yarn</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1540,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/charlie-the-alpaca-handspun/` was built on 2026-03-25T20:00:18.518Z -->
|
<!-- This page `/charlie-the-alpaca-handspun/` was built on 2026-04-21T21:31:06.796Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,11 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/brookes-collar/">
|
<a class="postlink" href="/wrap-bracelets/">
|
||||||
|
|
||||||
<img src="/img/lined-shearling-collar.jpg" alt="A green leather collar lined with brown/grey shearling and fitted with two sizes of silver-toned spikes." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/leather-wrap-bracelets.jpg" alt="two wrists, each wearing a black leather wrap bracelet. the upper bracelet is a thin strap wrapped 3 times around the wrist. the lower bracelet wraps twice, with a thicker strap, and has carefully placed spikes that avoid the wrap spots." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="brookes-collar">brooke's collar</h2>
|
<h2 data-ha-exclude="" id="wrap-bracelets">wrap bracelets </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1482,11 +1493,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/rachels-bracelets/">
|
<a class="postlink" href="/bowtie/">
|
||||||
|
|
||||||
<img src="/img/rachel-bracelets.jpg" alt="Two pink leather bracelets with stainless steel hardware and aqua stitching." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/bowtie.jpg" alt="A black leather bow tie with black stitching." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="rachels-bracelets">rachel's bracelets</h2>
|
<h2 data-ha-exclude="" id="bowtie">bowtie </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1496,11 +1507,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/leather-chest-harness/">
|
<a class="postlink" href="/pinatex-wallet-with-zipper/">
|
||||||
|
|
||||||
<img src="/img/leather-chest-harness.jpg" alt="Someone from chin to mid-torso, wearing a dark teal leather chest harness with matte black fittings over a t shirt." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/pinatex-ten-pocket-bifold.jpg" alt="A two-picture collage showing the inside and outside of a wallet made with piñatex, a leather alternative made from pineapple leaves. It is two tone blue with a pink accent and has a zippered pocket built in." loading="lazy" decoding="async" width="1000" height="1331">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="leather-chest-harness">leather chest harness</h2>
|
<h2 data-ha-exclude="" id="pinatex-wallet-with-zipper">piñatex wallet with zipper </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1540,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/circle-bag/` was built on 2026-03-25T20:00:18.515Z -->
|
<!-- This page `/circle-bag/` was built on 2026-04-21T21:31:06.788Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -219,6 +219,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -977,7 +983,7 @@ export { HeadingAnchors }</script>
|
|||||||
<heading-anchors content="<i class='fa-solid fa-anchor'></i>">
|
<heading-anchors content="<i class='fa-solid fa-anchor'></i>">
|
||||||
<h1 id="colophon">colophon</h1>
|
<h1 id="colophon">colophon</h1>
|
||||||
|
|
||||||
<p>This is v2 of my personal website, build with <a href="https://www.11ty.dev/" target="_blank" rel="external">Eleventy v3.1.2</a>. It's been hand-coded from the ground up.</p>
|
<p>This is v2 of my personal website, built with <a href="https://www.11ty.dev/" target="_blank" rel="external">Eleventy v3.1.2</a> and hosted by <a href="https://heckin.technology/" target="_blank" rel="external">heckin' technology</a>. It's been hand-coded from the ground up.</p>
|
||||||
<p>v1 of this site began in 2022 and was based on <a href="https://lenpaul.github.io/Millennial/" target="_blank" rel="external">Millennial</a>, a minimalist Jekyll theme for running a blog or publication by Paul Le.</p>
|
<p>v1 of this site began in 2022 and was based on <a href="https://lenpaul.github.io/Millennial/" target="_blank" rel="external">Millennial</a>, a minimalist Jekyll theme for running a blog or publication by Paul Le.</p>
|
||||||
<p>The fonts are <a href="https://brailleinstitute.org/freefont" target="_blank" rel="external">Atkinson Hyperlegible Next and Atkinson Hyperlegible Mono</a> for standard text and monospace respectively, specifically designed for low-vision readers to improve character recognition. Also they look neat :)</p>
|
<p>The fonts are <a href="https://brailleinstitute.org/freefont" target="_blank" rel="external">Atkinson Hyperlegible Next and Atkinson Hyperlegible Mono</a> for standard text and monospace respectively, specifically designed for low-vision readers to improve character recognition. Also they look neat :)</p>
|
||||||
<p>Thank you to some lovely friends for their feedback and help with the site! You should hire them. Yes, you.</p>
|
<p>Thank you to some lovely friends for their feedback and help with the site! You should hire them. Yes, you.</p>
|
||||||
@ -985,7 +991,7 @@ export { HeadingAnchors }</script>
|
|||||||
<li><a href="http://www.wondra.codes/" target="_blank" rel="external">Lenny</a>, especially for their HTML/CSS and accessibility expertise</li>
|
<li><a href="http://www.wondra.codes/" target="_blank" rel="external">Lenny</a>, especially for their HTML/CSS and accessibility expertise</li>
|
||||||
<li><a href="https://shirgoldberg.com/" target="_blank" rel="external">Shir</a></li>
|
<li><a href="https://shirgoldberg.com/" target="_blank" rel="external">Shir</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>You can <a href="/accessibility">find the accessibility statement here</a>. You can also <a href="/sitemap.xml">explore the sitemap</a>. If you'd like, you can view the <a href="/palette">site's palette</a> or the <a href="/style">style overview</a>.</p>
|
<p>You can <a href="/accessibility">find the accessibility statement here</a>. If you'd like, you can view the <a href="/palette">site's palette</a> or the <a href="/style">style overview</a>. You can also <a href="/sitemap.xml">explore the sitemap</a>.</p>
|
||||||
<p>This site is created <a href="https://declare-ai.org/1.0.0/none.html" target="_blank" rel="external">without the use of generative AI</a>.</p>
|
<p>This site is created <a href="https://declare-ai.org/1.0.0/none.html" target="_blank" rel="external">without the use of generative AI</a>.</p>
|
||||||
|
|
||||||
</heading-anchors>
|
</heading-anchors>
|
||||||
@ -1014,6 +1020,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/colophon/` was built on 2026-03-25T20:00:18.520Z -->
|
<!-- This page `/colophon/` was built on 2026-04-21T21:31:06.799Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1484,11 +1495,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/foxgloves/">
|
<a class="postlink" href="/stellars-jay/">
|
||||||
|
|
||||||
<img src="/img/foxgloves-print.jpg" alt="A print of a cluster of foxgloves. The background is inked in green, with negative space and pink details making up the foxgloves." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/stellars-jay-print.jpg" alt="A print of a stellar's jay, a beautiful black and blue bird, about to take off from a branch" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="foxgloves">foxgloves</h2>
|
<h2 data-ha-exclude="" id="stellars-jay">stellar's jay </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1502,32 +1513,32 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/gender-in-data-models/">
|
<a class="postlink" href="/fishhook-pride-keychains/">
|
||||||
|
|
||||||
<img src="/img/peony.jpg" alt="Image unrelated to post. A light pink peony in full bloom, close up." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/fishhook-keychain-nonbinary.jpg" alt="a keychain with an iridescent fishhook style attachment linked via leather to an iridescent keyring. the leather is stitched with nonbinary flag colors." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="gender-in-data-models">gender in data models</h2>
|
<h2 data-ha-exclude="" id="fishhook-pride-keychains">fishhook pride keychains </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>leather</li>
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
|
|
||||||
<li>software</li>
|
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/on-the-ubiquity-of-enby/">
|
<a class="postlink" href="/artisans-cooperative-shirts/">
|
||||||
|
|
||||||
<img src="/img/gender-census.jpg" alt="A screenshot of part of the Gender Census reports page, showing the header bar and a title that reads 'Gender Census 2023 Worldwide Report'" loading="lazy" decoding="async" width="1000" height="364">
|
<img src="/img/artisans-coop-shirt.jpg" alt="A black tank top laid on a desk. In white ink it reads 'Artisans Cooperative' with a print of some chickens and a quail." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="on-the-ubiquity-of-enby">on the ubiquity of 'enby'</h2>
|
<h2 data-ha-exclude="" id="artisans-cooperative-shirts">artisans cooperative shirts </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>gender</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1564,6 +1575,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/coming-out/` was built on 2026-03-25T20:00:18.510Z -->
|
<!-- This page `/coming-out/` was built on 2026-04-21T21:31:06.778Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1690,11 +1701,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/redirections/">
|
<a class="postlink" href="/accessible-image-modals/">
|
||||||
|
|
||||||
<img src="/img/angle-brackets-uwu.jpg" alt="Ascii art of an emoticon with pinched eyes and a small mouth made with two angle brackets." loading="lazy" decoding="async" width="1000" height="316">
|
<img src="/img/snacking-seagull.jpg" alt="Image unrelated to post. A seagull floating in the water with a starfish hanging out of eir mouth." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="redirections">redirections</h2>
|
<h2 data-ha-exclude="" id="accessible-image-modals">accessible image modals </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>software</li>
|
||||||
@ -1704,11 +1715,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/backend-accessibility/">
|
<a class="postlink" href="/screen-reader-optimizations/">
|
||||||
|
|
||||||
<img src="/img/camelCase-print.jpg" alt="A carved stamp next to its print. The print reads '#camelCase' in a slightly formal-looking italic font." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/crow.jpg" alt="Image unrelated to post. A crow poses on driftwood against a whitish sky." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="backend-accessibility">backend accessibility</h2>
|
<h2 data-ha-exclude="" id="screen-reader-optimizations">screen reader optimizations </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>software</li>
|
||||||
@ -1718,16 +1729,16 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/azure-locations-and-file-crawling/">
|
<a class="postlink" href="/designing-a-bag/">
|
||||||
|
|
||||||
<img src="/img/azure-locations.jpg" alt="A Linux terminal. There is a fun rainbow flag in ascii art at the top, and then the user has called a command asking Azure for a list of locations applicable to a specific resource type. The output is lengthy." loading="lazy" decoding="async" width="1000" height="827">
|
<img src="/img/shoelace-bag.jpg" alt="a 3-image collage showcasing a leather crossbody bag. the leather body is brown and fairly simple. up the narrow sides, rope is laced through grommets in a style resembling a shoe lacing. the rope forms the handle and loops seamlessly through the other side of the bag, joining in one point in a figure-8 follow-through knot. At the bottom corners, there are small diagonal lines of stitching to give the bag a small lip around the base and ensure small objects don't slide out." loading="lazy" decoding="async" width="1000" height="1777">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="azure-locations-and-file-crawling">azure locations and file crawling</h2>
|
<h2 data-ha-exclude="" id="designing-a-bag">designing a bag </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>leather</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
<li>software</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1764,6 +1775,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/comparing-text-editors/` was built on 2026-03-25T20:00:18.517Z -->
|
<!-- This page `/comparing-text-editors/` was built on 2026-04-21T21:31:06.795Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1481,45 +1492,61 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/fix-your-hearts/">
|
<a class="postlink" href="/shrimp/">
|
||||||
|
|
||||||
<img src="/img/fix-your-hearts-print.jpg" alt="2 copies of the same print, one in black ink and one in dark teal. The print is text that reads 'fix your hearts or die', with the text shaped into a somewhat long and narrow heart." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/shrimp-print.jpg" alt="A print of a small shrimp with slender little leggies in orange ink." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="fix-your-hearts">fix your hearts</h2>
|
<h2 data-ha-exclude="" id="shrimp">shrimp </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/squarsh/">
|
|
||||||
|
|
||||||
<img src="/img/squarsh-prints.jpg" alt="Two identical prints of a delicata squash. The body of the squash is cornsilk (muted yellow), the stem and stripes in mint green, and the shadows in lilac." loading="lazy" decoding="async" width="1000" height="1000">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="squarsh">squarsh</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/greeting-quorbs/">
|
|
||||||
|
|
||||||
<img src="/img/greeting-quorbs.jpg" alt="A pile of hand-printed A2 size greeting cards. Only the front is visible, showing a particularly round quail." loading="lazy" decoding="async" width="1000" height="1000">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="greeting-quorbs">greeting quorbs</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>sticker</li>
|
||||||
|
|
||||||
|
<li>pin</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/booby-congrats-on-the-top-surgery/">
|
||||||
|
|
||||||
|
<img src="/img/booby-card.jpg" alt="A landscape-oriented white card with a two-color print of a blue-footed booby." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="booby-congrats-on-the-top-surgery">booby (congrats on the top surgery) </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/boypussy/">
|
||||||
|
|
||||||
|
<img src="/img/boypussy-shirt.jpg" alt="A butch holding a chainsaw and wearing a tank top that reads boypussy in pink Barbie font." class="blur" loading="lazy" decoding="async" width="1000" height="1250">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="boypussy-mature">boypussy (mature)</h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>sticker</li>
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
|
<li>pin</li>
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1555,6 +1582,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/congrats-on-the-autism-adhd/` was built on 2026-03-25T20:00:18.477Z -->
|
<!-- This page `/congrats-on-the-autism-adhd/` was built on 2026-04-21T21:31:06.758Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1487,29 +1498,15 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/euphorbia/">
|
<a class="postlink" href="/luminescent/">
|
||||||
|
|
||||||
<img src="/img/euphorbia-print.jpg" alt="A print in black ink on brown paper. It depicts a stem of euphorbia, a plant with long, thin leaves and many clustered flowers." loading="lazy" decoding="async" width="1000" height="1333">
|
<img src="/img/luminescent-print.jpg" alt="A print of a tattooed woman in bright highlighter yellow underwear." class="blur" loading="lazy" decoding="async" width="900" height="1200">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="euphorbia">euphorbia</h2>
|
<h2 data-ha-exclude="" id="luminescent-mature">luminescent (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/fishhook-pride-keychains/">
|
|
||||||
|
|
||||||
<img src="/img/fishhook-keychain-nonbinary.jpg" alt="a keychain with an iridescent fishhook style attachment linked via leather to an iridescent keyring. the leather is stitched with nonbinary flag colors." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="fishhook-pride-keychains">fishhook pride keychains</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1517,16 +1514,32 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/geese-trans-wrongs/">
|
<a class="postlink" href="/seedling/">
|
||||||
|
|
||||||
<img src="/img/trans-wrongs-geese-print.jpg" alt="Two Canada geese and their reflections in the water. One is calmly swimming away, while the over leans over towards them and HONKS! Both have speech bubbles; the calm goose says 'trans rights!' while the honking goose says 'trans wrongs!'" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/seedling-print.jpg" alt="A print of a 3-stage design of a green seedling barely open, starting to straighten up, and growing strong, with little piles of dirt beneath each one." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="geese-trans-wrongs">geese/trans wrongs</h2>
|
<h2 data-ha-exclude="" id="seedling">seedling </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>card</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/nonbinary-flag/">
|
||||||
|
|
||||||
|
<img src="/img/nonbinary-flag-print.jpg" alt="A print of a nonbinary flag waving, with yellow, white (uninked), purple, and black stripes." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="nonbinary-flag">nonbinary flag </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
|
|
||||||
@ -1565,6 +1578,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/congrats-on-the-gay/` was built on 2026-03-25T20:00:18.496Z -->
|
<!-- This page `/congrats-on-the-gay/` was built on 2026-04-21T21:31:06.770Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -219,6 +219,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -980,11 +986,11 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 id="contact-me">contact me</h2>
|
<h2 id="contact-me">contact me</h2>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><i aria-hidden="true" class="fa-brands fa-signal-messenger"></i> signal</dt>
|
<dt><i aria-hidden="true" class="fa-brands fa-signal-messenger"></i> signal</dt>
|
||||||
<dd><a href="https://signal.me/#eu/PcJ86iNQeAbC-SFbxqI00gFQb6zL4Y6QDCsFDU2mokM4K40djsdNYa3hJAee79ll">inherentlee.13</a></dd>
|
<dd><a href="https://signal.me/#eu/_-MvyOMcylLFTslDIzJnJkc4Yg1G_hpQt5wf-DVxS0ei4WhimMZLJYd_e28kcNCL">seven seven four, two four nine, zero five eight six</a></dd>
|
||||||
<dt><i aria-hidden="true" class="fa-solid fa-envelope"></i> email</dt>
|
<dt><i aria-hidden="true" class="fa-solid fa-envelope"></i> email</dt>
|
||||||
<dd><a href="mailto:lee.cattarin@gmail.com" target="_blank">lee dot cattarin at gmail dot com</a></dd>
|
<dd><a href="mailto:lee.cattarin@gmail.com" target="_blank">lee dot cattarin at gmail dot com</a></dd>
|
||||||
<dt><i aria-hidden="true" class="fa-solid fa-mobile-retro"></i> text (no phone calls!)</dt>
|
<dt><i aria-hidden="true" class="fa-solid fa-mobile-retro"></i> text (no phone calls!)</dt>
|
||||||
<dd>seven seven four, two four nine, zero five eight six</dd>
|
<dd><a href="tel:17742490586">seven seven four, two four nine, zero five eight six</a></dd>
|
||||||
<dt><i aria-hidden="true" class="fa-brands fa-discord"></i> discord</dt>
|
<dt><i aria-hidden="true" class="fa-brands fa-discord"></i> discord</dt>
|
||||||
<dd>inherentlee</dd>
|
<dd>inherentlee</dd>
|
||||||
<dt><i aria-hidden="true" class="fa-solid fa-envelopes-bulk"></i> snail mail</dt>
|
<dt><i aria-hidden="true" class="fa-solid fa-envelopes-bulk"></i> snail mail</dt>
|
||||||
@ -1094,6 +1100,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/contact/` was built on 2026-03-25T20:00:18.521Z -->
|
<!-- This page `/contact/` was built on 2026-04-21T21:31:06.799Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,11 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/spinners-dream-handspun/">
|
<a class="postlink" href="/handspun-yarn-in-party-mix-and-orange-gold/">
|
||||||
|
|
||||||
<img src="/img/spinners-dream-handspun.jpg" alt="a skein of a lightly variegated grey yarn in about a sport or DK weight." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/handspun0.jpg" alt="4 skeins of handspun yarn, two in a somewhat pastel multicolor and two in a blend of orange, gold, and white." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="spinners-dream-handspun">spinner's dream handspun</h2>
|
<h2 data-ha-exclude="" id="handspun-yarn-in-party-mix-and-orange-gold">handspun yarn in party mix and orange-gold </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>yarn</li>
|
<li>yarn</li>
|
||||||
@ -1482,11 +1493,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/orion-handspun/">
|
<a class="postlink" href="/icelandic-lamb-handspun/">
|
||||||
|
|
||||||
<img src="/img/orion-handspun.jpg" alt="3 skeins of handspun yarn, 1 large and 2 small. One of the small skeins is a little more inconsistent weight than the other two - this one was spun on drop spindle about 2 years ago. The other two are about a sport or maybe a DK weight. All three are a gold colorway with tiny hints of orange and a pale light green." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/icelandic-lamb.jpg" alt="a skein of black handspun yarn" loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="orion-handspun">orion handspun</h2>
|
<h2 data-ha-exclude="" id="icelandic-lamb-handspun">icelandic lamb handspun </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>yarn</li>
|
<li>yarn</li>
|
||||||
@ -1496,11 +1507,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/fire-and-ice-handspun/">
|
<a class="postlink" href="/petrichor-handspun/">
|
||||||
|
|
||||||
<img src="/img/fire-ice-handspun.jpg" alt="2 skeins, one large and one small, of a heathered orange yarn with hints of blue in about a DK or worsted weight." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/petrichor-handspun.jpg" alt="3 skeins of handspun yarn, 2 large and 1 small. the large ones are a rich earth-tone blend of reds, pinks, browns, and hints of green and gold. the smaller skein is similar but with a decidedly greener hue" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="fire-and-ice-handspun">fire & ice handspun</h2>
|
<h2 data-ha-exclude="" id="petrichor-handspun">petrichor handspun </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>yarn</li>
|
<li>yarn</li>
|
||||||
@ -1540,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/coral-reef-handspun/` was built on 2026-03-25T20:00:18.517Z -->
|
<!-- This page `/coral-reef-handspun/` was built on 2026-04-21T21:31:06.795Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1467,21 +1478,17 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/queer/">
|
<a class="postlink" href="/congrats-on-the-gay/">
|
||||||
|
|
||||||
<img src="/img/queer-print.jpg" alt="A print of the word queer in black ink. The letters are rounded with elongated oval negative space." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/congrats-on-the-gay.jpg" alt="A greeting card reading, in black. 'Congrats on the,' and then, in rainbow, 'Gay!'" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="queer">queer</h2>
|
<h2 data-ha-exclude="" id="congrats-on-the-gay">congrats on the gay </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>sticker</li>
|
|
||||||
|
|
||||||
<li>pin</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1489,43 +1496,35 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/anarchy-autism/">
|
<a class="postlink" href="/flatfish/">
|
||||||
|
|
||||||
<img src="/img/anarchy-autism-rainbow-print.jpg" alt="A print in rainbow ink that says autism with the anarchy A." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/flatfish-print.jpg" alt="A print of a simple flatfish design inked in sepia." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="anarchy-autism">anarchy autism</h2>
|
<h2 data-ha-exclude="" id="flatfish">flatfish </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>sticker</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
|
||||||
|
|
||||||
<li>pin</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/girldick/">
|
<a class="postlink" href="/hummingbird-become-ungovernable/">
|
||||||
|
|
||||||
<img src="/img/girldick-shirt.jpg" alt="A butch cooking and wearing a cropped tee with blue cap sleeves that reads girldick in blue G.I.Joe font." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/hummingbird-ungovernable-print.jpg" alt="A block print in black and orange ink of a rufous hummingbird, tail flared, hovering in midair. Clutched in eir tiny claws is a banner that waves in the wind and reads 'become ungovernable'" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="girldick">girldick</h2>
|
<h2 data-ha-exclude="" id="hummingbird-become-ungovernable">hummingbird become ungovernable </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>sticker</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
<li>pin</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1561,6 +1560,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/crow/` was built on 2026-03-25T20:00:18.519Z -->
|
<!-- This page `/crow/` was built on 2026-04-21T21:31:06.797Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1483,36 +1494,6 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/triangle-pouch/">
|
|
||||||
|
|
||||||
<img src="/img/triangle-pouch.jpg" alt="5 small triangular pouches made of leather in two sizes and various colors." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="triangle-pouch">triangle pouch</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/fishhook-pride-keychains/">
|
|
||||||
|
|
||||||
<img src="/img/fishhook-keychain-nonbinary.jpg" alt="a keychain with an iridescent fishhook style attachment linked via leather to an iridescent keyring. the leather is stitched with nonbinary flag colors." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="fishhook-pride-keychains">fishhook pride keychains</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/handedness-toggle/">
|
<a class="postlink" href="/handedness-toggle/">
|
||||||
|
|
||||||
@ -1527,6 +1508,34 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/double-bill-pocket-bifold/">
|
||||||
|
|
||||||
|
<img src="/img/double-bill-pocket-bifold.jpg" alt="A 3-picture collage showing a hand-stitched leather wallet in plum and light natural leather, with a double bill pocket." loading="lazy" decoding="async" width="1000" height="1777">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="double-bill-pocket-bifold">double bill pocket bifold </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>leather</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/backend-accessibility/">
|
||||||
|
|
||||||
|
<img src="/img/camelCase-print.jpg" alt="A carved stamp next to its print. The print reads '#camelCase' in a slightly formal-looking italic font." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="backend-accessibility">backend accessibility </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>software</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1558,6 +1567,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/designing-a-bag/` was built on 2026-03-25T20:00:18.494Z -->
|
<!-- This page `/designing-a-bag/` was built on 2026-04-21T21:31:06.792Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1519,11 +1530,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/eleventy-lessons/">
|
<a class="postlink" href="/screen-reader-optimizations/">
|
||||||
|
|
||||||
<img src="/img/hellebore.jpg" alt="Image unrelated to post. Close up on a pale green hellebore flower." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/crow.jpg" alt="Image unrelated to post. A crow poses on driftwood against a whitish sky." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="eleventy-lessons">eleventy lessons</h2>
|
<h2 data-ha-exclude="" id="screen-reader-optimizations">screen reader optimizations </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>software</li>
|
||||||
@ -1547,11 +1558,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/screen-reader-optimizations/">
|
<a class="postlink" href="/backend-accessibility/">
|
||||||
|
|
||||||
<img src="/img/crow.jpg" alt="Image unrelated to post. A crow poses on driftwood against a whitish sky." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/camelCase-print.jpg" alt="A carved stamp next to its print. The print reads '#camelCase' in a slightly formal-looking italic font." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="screen-reader-optimizations">screen reader optimizations</h2>
|
<h2 data-ha-exclude="" id="backend-accessibility">backend accessibility </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>software</li>
|
<li>software</li>
|
||||||
@ -1591,6 +1602,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/domain-and-site-setup/` was built on 2026-03-25T20:00:18.513Z -->
|
<!-- This page `/domain-and-site-setup/` was built on 2026-04-21T21:31:06.786Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,11 +1479,27 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/sunflower/">
|
<a class="postlink" href="/little-critter-pouch/">
|
||||||
|
|
||||||
<img src="/img/sunflower.jpg" alt="A sunflower made of leather. Many individual natural toned leather petals are sewn onto a brown center ." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/little-critter-pouch.jpg" alt="A leather pouch shaped a bit like a d10 but with eight sides. It has a rainbow zippered opening and a wristlet strap." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="sunflower">sunflower</h2>
|
<h2 data-ha-exclude="" id="little-critter-pouch">little critter pouch </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>leather</li>
|
||||||
|
|
||||||
|
<li>highlight</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/moss-harness/">
|
||||||
|
|
||||||
|
<img src="/img/moss-harness.jpg" alt="A nylon webbing harness in bright teal laid out on a desk." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="moss-harness">moss harness </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1482,25 +1509,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/snap-pouch/">
|
<a class="postlink" href="/o-ring-bracelet/">
|
||||||
|
|
||||||
<img src="/img/snap-pouches.jpg" alt="4 square pouches that close with snaps. 2 have loops that attach keyrings. They are in various colors of leather." loading="lazy" decoding="async" width="900" height="1200">
|
<img src="/img/oring-bracelet.jpg" alt="A green leather bracelet, stitched along the edges with dark blue thread, holds an ouroborous o-ring in place with two black snaps." loading="lazy" decoding="async" width="900" height="1200">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="snap-pouch">snap pouch</h2>
|
<h2 data-ha-exclude="" id="o-ring-bracelet">o-ring bracelet </h2>
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/pinatex-wallet-with-zipper/">
|
|
||||||
|
|
||||||
<img src="/img/pinatex-ten-pocket-bifold.jpg" alt="A two-picture collage showing the inside and outside of a wallet made with piñatex, a leather alternative made from pineapple leaves. It is two tone blue with a pink accent and has a zippered pocket built in." loading="lazy" decoding="async" width="1000" height="1331">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="pinatex-wallet-with-zipper">piñatex wallet with zipper</h2>
|
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1540,6 +1553,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/double-bill-pocket-bifold/` was built on 2026-03-25T20:00:18.512Z -->
|
<!-- This page `/double-bill-pocket-bifold/` was built on 2026-04-21T21:31:06.784Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1473,11 +1484,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/triangle-pouch/">
|
<a class="postlink" href="/leather-chest-harness/">
|
||||||
|
|
||||||
<img src="/img/triangle-pouch.jpg" alt="5 small triangular pouches made of leather in two sizes and various colors." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/leather-chest-harness.jpg" alt="Someone from chin to mid-torso, wearing a dark teal leather chest harness with matte black fittings over a t shirt." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="triangle-pouch">triangle pouch</h2>
|
<h2 data-ha-exclude="" id="leather-chest-harness">leather chest harness </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1487,11 +1498,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/aarons-mask/">
|
<a class="postlink" href="/circle-bag/">
|
||||||
|
|
||||||
<img src="/img/aaron-mask.jpg" alt="A brown/grey leather mask of a long snouted dog with visible teeth and red detailing." loading="lazy" decoding="async" width="900" height="1200">
|
<img src="/img/circle-bag.jpg" alt="A round bag in brown, mustard yellow, and rich deep orange, with a teal shoulder strap." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="aarons-mask">aaron's mask</h2>
|
<h2 data-ha-exclude="" id="circle-bag">circle bag </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1501,14 +1512,18 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/rachels-bracelets/">
|
<a class="postlink" href="/gender-in-data-models/">
|
||||||
|
|
||||||
<img src="/img/rachel-bracelets.jpg" alt="Two pink leather bracelets with stainless steel hardware and aqua stitching." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/peony.jpg" alt="Image unrelated to post. A light pink peony in full bloom, close up." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="rachels-bracelets">rachel's bracelets</h2>
|
<h2 data-ha-exclude="" id="gender-in-data-models">gender in data models </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>gender</li>
|
||||||
|
|
||||||
|
<li>software</li>
|
||||||
|
|
||||||
|
<li>highlight</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1545,6 +1560,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/dragon-mask/` was built on 2026-03-25T20:00:18.494Z -->
|
<!-- This page `/dragon-mask/` was built on 2026-04-21T21:31:06.793Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1467,6 +1478,34 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/rambouillet-handspun/">
|
||||||
|
|
||||||
|
<img src="/img/rambouillet-handspun.jpg" alt="1 large and 2 small skeins of handspun yarn in a sport or DK weight that has been dyed in light and dark teal, green, and rusty green-gold." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="rambouillet-handspun">rambouillet handspun </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>yarn</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/light-grey-jacobs-handspun/">
|
||||||
|
|
||||||
|
<img src="/img/light-grey-jacobs.jpg" alt="a skein of light grey handspun yarn" loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="light-grey-jacobs-handspun">light grey jacobs handspun </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>yarn</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/handspun-yarn-in-party-mix-and-orange-gold/">
|
<a class="postlink" href="/handspun-yarn-in-party-mix-and-orange-gold/">
|
||||||
|
|
||||||
@ -1481,34 +1520,6 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/spinning-plants/">
|
|
||||||
|
|
||||||
<img src="/img/plant-handspun.jpg" alt="6 small skeins of handspun yarn, each made from a different plant fiber. from top, we have flax (medium brown, rough); what is probably lotus (golden, shiny and soft); banana (white and semi shiny); hemp (light brown, rough); tencel (white and very shiny); ramie (a particularly small skein, white and semi shiny)" loading="lazy" decoding="async" width="1000" height="874">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="spinning-plants">spinning plants</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>yarn</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/petrichor-handspun/">
|
|
||||||
|
|
||||||
<img src="/img/petrichor-handspun.jpg" alt="3 skeins of handspun yarn, 2 large and 1 small. the large ones are a rich earth-tone blend of reds, pinks, browns, and hints of green and gold. the smaller skein is similar but with a decidedly greener hue" loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="petrichor-handspun">petrichor handspun</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>yarn</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1540,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/dyeing-fiber/` was built on 2026-03-25T20:00:18.517Z -->
|
<!-- This page `/dyeing-fiber/` was built on 2026-04-21T21:31:06.795Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1522,6 +1533,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/ecommerce-options/` was built on 2026-03-25T20:00:18.511Z -->
|
<!-- This page `/ecommerce-options/` was built on 2026-04-21T21:31:06.783Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,11 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/lobstah/">
|
<a class="postlink" href="/brookes-collar/">
|
||||||
|
|
||||||
<img src="/img/lobstah.jpg" alt="Two red leather lobster ornaments, about 4-5 in long each." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/lined-shearling-collar.jpg" alt="A green leather collar lined with brown/grey shearling and fitted with two sizes of silver-toned spikes." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="lobstah">lobstah</h2>
|
<h2 data-ha-exclude="" id="brookes-collar">brooke's collar </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1482,11 +1493,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/sunflower/">
|
<a class="postlink" href="/stephanie-collar/">
|
||||||
|
|
||||||
<img src="/img/sunflower.jpg" alt="A sunflower made of leather. Many individual natural toned leather petals are sewn onto a brown center ." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/stephanie-collar.jpg" alt="A white woman with a shaved side cut wearing a black leather collar with a large dangling o-ring." loading="lazy" decoding="async" width="1000" height="562">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="sunflower">sunflower</h2>
|
<h2 data-ha-exclude="" id="stephanie-collar">stephanie collar </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1496,11 +1507,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/moss-harness/">
|
<a class="postlink" href="/shrimp-cat-toy/">
|
||||||
|
|
||||||
<img src="/img/moss-harness.jpg" alt="A nylon webbing harness in bright teal laid out on a desk." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/two-shrimp.jpg" alt="Two leather shrimp-shaped cat toys. They have long dangly antennae and are stitched in red and orange." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="moss-harness">moss harness</h2>
|
<h2 data-ha-exclude="" id="shrimp-cat-toy">shrimp cat toy </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1540,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/eight-pocket-bifold/` was built on 2026-03-25T20:00:18.512Z -->
|
<!-- This page `/eight-pocket-bifold/` was built on 2026-04-21T21:31:06.785Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1426,7 +1437,7 @@ export { HeadingAnchors }</script>
|
|||||||
|
|
||||||
|
|
||||||
<p>recently I wrote <em>several</em> sites using <a href="https://www.11ty.dev/" target="_blank" rel="external">Eleventy</a> (4? 5?). Including, over the past few days, rewriting this one! That's right, if you're reading this, we're now running on 11ty and hosted by <a href="https://heckin.technology/" target="_blank" rel="external">heckin.technology</a>. See ya, GitHub. Won't miss ya.</p>
|
<p>recently I wrote <em>several</em> sites using <a href="https://www.11ty.dev/" target="_blank" rel="external">Eleventy</a> (4? 5?). Including, over the past few days, rewriting this one! That's right, if you're reading this, we're now running on 11ty and hosted by <a href="https://heckin.technology/" target="_blank" rel="external">heckin.technology</a>. See ya, GitHub. Won't miss ya.</p>
|
||||||
<p>I've compiled some of the things I've learned in a standalone site: <a href="https://inherentlee.codeberg.page/lessons/" target="_blank" rel="external">11ty Lessons</a>.</p>
|
<p>Originally, I compiled some of the things I've learned in a standalone site.</p>
|
||||||
<p>however, since I don't know how much I'll focus on that specific site - it is mostly a sample - I am re-publishing the most useful information here. I'll skip the intro to Markdown content. I'm also going to update them where I've learned more or to better match what's represented on this site.</p>
|
<p>however, since I don't know how much I'll focus on that specific site - it is mostly a sample - I am re-publishing the most useful information here. I'll skip the intro to Markdown content. I'm also going to update them where I've learned more or to better match what's represented on this site.</p>
|
||||||
<p>this will comprise of 4 parts: <a href="#related-posts">related posts</a>, <a href="#featured-images">featured images</a>, <a href="#pagination">pagination</a>, and <a href="#tag-image-preview">tag image preview</a>. Feel free to jump ahead, as none depend on the others.</p>
|
<p>this will comprise of 4 parts: <a href="#related-posts">related posts</a>, <a href="#featured-images">featured images</a>, <a href="#pagination">pagination</a>, and <a href="#tag-image-preview">tag image preview</a>. Feel free to jump ahead, as none depend on the others.</p>
|
||||||
<hr>
|
<hr>
|
||||||
@ -1604,6 +1615,8 @@ pagination:
|
|||||||
eleventyConfig<span class="token punctuation">.</span><span class="token function">addCollection</span><span class="token punctuation">(</span><span class="token string">"tagPagination"</span><span class="token punctuation">,</span> <span class="token keyword">function</span><span class="token punctuation">(</span><span class="token parameter">collection</span><span class="token punctuation">)</span> <span class="token punctuation">{</span>
|
eleventyConfig<span class="token punctuation">.</span><span class="token function">addCollection</span><span class="token punctuation">(</span><span class="token string">"tagPagination"</span><span class="token punctuation">,</span> <span class="token keyword">function</span><span class="token punctuation">(</span><span class="token parameter">collection</span><span class="token punctuation">)</span> <span class="token punctuation">{</span>
|
||||||
<span class="token comment">// Get unique list of tags</span>
|
<span class="token comment">// Get unique list of tags</span>
|
||||||
<span class="token keyword">let</span> tagSet <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Set</span><span class="token punctuation">(</span>collection<span class="token punctuation">.</span><span class="token function">getAllSorted</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">flatMap</span><span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token parameter">post</span><span class="token punctuation">)</span> <span class="token operator">=></span> post<span class="token punctuation">.</span>data<span class="token punctuation">.</span>tags <span class="token operator">||</span> <span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
|
<span class="token keyword">let</span> tagSet <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Set</span><span class="token punctuation">(</span>collection<span class="token punctuation">.</span><span class="token function">getAllSorted</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">flatMap</span><span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token parameter">post</span><span class="token punctuation">)</span> <span class="token operator">=></span> post<span class="token punctuation">.</span>data<span class="token punctuation">.</span>tags <span class="token operator">||</span> <span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
|
||||||
|
<span class="token comment">// Remove "structural" tags</span>
|
||||||
|
tagSet <span class="token operator">=</span> tagSet<span class="token punctuation">.</span><span class="token function">difference</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">Set</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"posts"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
|
||||||
|
|
||||||
<span class="token comment">// Get each item that matches the tag</span>
|
<span class="token comment">// Get each item that matches the tag</span>
|
||||||
<span class="token keyword">let</span> paginationSize <span class="token operator">=</span> <span class="token number">6</span><span class="token punctuation">;</span>
|
<span class="token keyword">let</span> paginationSize <span class="token operator">=</span> <span class="token number">6</span><span class="token punctuation">;</span>
|
||||||
@ -1756,6 +1769,36 @@ eleventyExcludeFromCollections: true
|
|||||||
<h2 data-ha-exclude="" id="related-posts-2">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts-2">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/comparing-text-editors/">
|
||||||
|
|
||||||
|
<img src="/img/horsetail.jpg" alt="Image unrelated to post. Close up on a horsetail plant's stem, with many small needle-like leaves emerging from all sides of the circular stem at each segmented joint." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="comparing-text-editors">comparing text editors </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>software</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/designing-a-bag/">
|
||||||
|
|
||||||
|
<img src="/img/shoelace-bag.jpg" alt="a 3-image collage showcasing a leather crossbody bag. the leather body is brown and fairly simple. up the narrow sides, rope is laced through grommets in a style resembling a shoe lacing. the rope forms the handle and loops seamlessly through the other side of the bag, joining in one point in a figure-8 follow-through knot. At the bottom corners, there are small diagonal lines of stitching to give the bag a small lip around the base and ensure small objects don't slide out." loading="lazy" decoding="async" width="1000" height="1777">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="designing-a-bag">designing a bag </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>leather</li>
|
||||||
|
|
||||||
|
<li>software</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/intro-to-wireframing/">
|
<a class="postlink" href="/intro-to-wireframing/">
|
||||||
|
|
||||||
@ -1770,34 +1813,6 @@ eleventyExcludeFromCollections: true
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/redirections/">
|
|
||||||
|
|
||||||
<img src="/img/angle-brackets-uwu.jpg" alt="Ascii art of an emoticon with pinched eyes and a small mouth made with two angle brackets." loading="lazy" decoding="async" width="1000" height="316">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="redirections">redirections</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>software</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/handedness-toggle/">
|
|
||||||
|
|
||||||
<img src="/img/handedness-toggle-0.png" alt="A screenshot of the rescue trans rescue navbar centered on a button that shows a hand pointing left." loading="lazy" decoding="async" width="1000" height="257">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="handedness-toggle">handedness toggle</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>software</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1829,6 +1844,6 @@ eleventyExcludeFromCollections: true
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/eleventy-lessons/` was built on 2026-03-25T20:00:18.519Z -->
|
<!-- This page `/eleventy-lessons/` was built on 2026-04-21T21:31:06.797Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,43 +1479,51 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/become-unbutterable/">
|
<a class="postlink" href="/seedling/">
|
||||||
|
|
||||||
<img src="/img/become-unbutterable.jpg" alt="3 copies of the same stamp in orange ink are spread out next to the hand carved rubber stamp they were made from. They show a cat lying on his back with paws curled, holding a butter knife in his mouth. Text around the cat reads, in all caps, 'become unbutterable.'" loading="lazy" decoding="async" width="1000" height="562">
|
<img src="/img/seedling-print.jpg" alt="A print of a 3-stage design of a green seedling barely open, starting to straighten up, and growing strong, with little piles of dirt beneath each one." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="become-unbutterable">become unbutterable</h2>
|
<h2 data-ha-exclude="" id="seedling">seedling </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/crow/">
|
<a class="postlink" href="/geese/">
|
||||||
|
|
||||||
<img src="/img/crow-print.jpg" alt="a block print in dark indigo ink on white paper depicting a perched crow looking over one shoulder. one side of the crow is lit with fine feather detail, and the other side is almost entirely in shadow." loading="lazy" decoding="async" width="1000" height="1333">
|
<img src="/img/geese-print.jpg" alt="Two Canada geese and their reflections in the water. One is calmly swimming away, while the over leans over and HONKS!" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="crow">crow</h2>
|
<h2 data-ha-exclude="" id="geese">geese </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/quorbs/">
|
<a class="postlink" href="/kestrel-zine/">
|
||||||
|
|
||||||
<img src="/img/quorbs-print.jpg" alt="A print in two layers of color showing two rotund quails on a branch. Most of the details are in black ink, then there is a layer with a brown gradient filling in some color on the head and breast." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/kestrel-zine.jpg" alt="A 5 photo collage showing the front and back cover as well as 3 full spreads of a folded zine about Kestrel, my dog, who is a 65lb Malinois with a goofy smile and floppy ears. it is printed in two layers of color, blue and orange, and each image depicts Kestrel in various posts... alert and watchful, resting, looking mopey, wearing a sweatshirt." loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="quorbs">quorbs</h2>
|
<h2 data-ha-exclude="" id="kestrel-zine">kestrel zine </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>zine</li>
|
||||||
|
|
||||||
<li>highlight</li>
|
<li>highlight</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1542,6 +1561,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/euphorbia/` was built on 2026-03-25T20:00:18.487Z -->
|
<!-- This page `/euphorbia/` was built on 2026-04-21T21:31:06.768Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1499,38 +1510,32 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/shrimp/">
|
<a class="postlink" href="/chanterelle/">
|
||||||
|
|
||||||
<img src="/img/shrimp-print.jpg" alt="A print of a small shrimp with slender little leggies in orange ink." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/chanterelle-print.jpg" alt="A print of two chanterelle mushrooms inked in a dark-to-light yellow gradient." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="shrimp">shrimp</h2>
|
<h2 data-ha-exclude="" id="chanterelle">chanterelle </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>sticker</li>
|
|
||||||
|
|
||||||
<li>pin</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/foxgloves/">
|
<a class="postlink" href="/hair/">
|
||||||
|
|
||||||
<img src="/img/foxgloves-print.jpg" alt="A print of a cluster of foxgloves. The background is inked in green, with negative space and pink details making up the foxgloves." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/hair-print.jpg" alt="A print in black ink of belly hair." loading="lazy" decoding="async" width="1000" height="710">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="foxgloves">foxgloves</h2>
|
<h2 data-ha-exclude="" id="hair">hair </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>gender</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1567,6 +1572,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/fat-raccoon/` was built on 2026-03-25T20:00:18.506Z -->
|
<!-- This page `/fat-raccoon/` was built on 2026-04-21T21:31:06.774Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1502,14 +1513,16 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/proud-dad-wallet/">
|
<a class="postlink" href="/geese-trans-wrongs/">
|
||||||
|
|
||||||
<img src="/img/proud-dad-wallet.jpg" alt="A brown leather wallet with a subtle trans flag stitching across the top." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/trans-wrongs-geese-print.jpg" alt="Two Canada geese and their reflections in the water. One is calmly swimming away, while the over leans over towards them and HONKS! Both have speech bubbles; the calm goose says 'trans rights!' while the honking goose says 'trans wrongs!'" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="proud-dad-wallet">proud dad wallet</h2>
|
<h2 data-ha-exclude="" id="geese-trans-wrongs">geese/trans wrongs </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
|
|
||||||
@ -1518,17 +1531,13 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/coming-out/">
|
<a class="postlink" href="/on-pronouns/">
|
||||||
|
|
||||||
<img src="/img/coming-out-card-print.jpg" alt="A card and print in the same design - a chick and a broken eggshell, and a simple font reading 'congrats on coming out of your shell'" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/starling.jpg" alt="Image unrelated to post. A starling, a beautifully iridescent black bird, stands on a hanging suet feeder." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="coming-out">coming out</h2>
|
<h2 data-ha-exclude="" id="on-pronouns">on pronouns </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>card</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1536,17 +1545,15 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/booby-congrats-on-the-top-surgery/">
|
<a class="postlink" href="/luminescent/">
|
||||||
|
|
||||||
<img src="/img/booby-card.jpg" alt="A landscape-oriented white card with a two-color print of a blue-footed booby." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/luminescent-print.jpg" alt="A print of a tattooed woman in bright highlighter yellow underwear." class="blur" loading="lazy" decoding="async" width="900" height="1200">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="booby-congrats-on-the-top-surgery">booby (congrats on the top surgery)</h2>
|
<h2 data-ha-exclude="" id="luminescent-mature">luminescent (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1584,6 +1591,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/fd-signifier-and-oppositional-sexism/` was built on 2026-03-25T20:00:18.485Z -->
|
<!-- This page `/fd-signifier-and-oppositional-sexism/` was built on 2026-04-21T21:31:06.766Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1483,6 +1494,22 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/gender-as-a-proxy-variable/">
|
||||||
|
|
||||||
|
<img src="/img/gender-zine-cover.png" alt="Part of a scan of the cover of my zine, Gender as a Proxy Variable. It shows the title and a bit of handsewn binding." loading="lazy" decoding="async" width="1000" height="444">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="gender-as-a-proxy-variable">gender as a proxy variable </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
|
<li>zine</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/kestrel-zine/">
|
<a class="postlink" href="/kestrel-zine/">
|
||||||
|
|
||||||
@ -1501,22 +1528,6 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/gender-as-a-proxy-variable/">
|
|
||||||
|
|
||||||
<img src="/img/gender-zine-cover.png" alt="Part of a scan of the cover of my zine, Gender as a Proxy Variable. It shows the title and a bit of handsewn binding." loading="lazy" decoding="async" width="1000" height="444">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="gender-as-a-proxy-variable">gender as a proxy variable</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
<li>zine</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1548,6 +1559,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/fedizinefest-2025/` was built on 2026-03-25T20:00:18.487Z -->
|
<!-- This page `/fedizinefest-2025/` was built on 2026-04-21T21:31:06.768Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -20,9 +20,9 @@
|
|||||||
<p>Fair warning: This solution is likely imperfect.</p>
|
<p>Fair warning: This solution is likely imperfect.</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 id="the-dialog-element">the <code>dialog</code> element</h2>
|
<h2 id="the-dialog-element">the <code>dialog</code> element</h2>
|
||||||
<p>do you know how many tutorials want you to roll your own modals? It's a not-insignificant amount. W3Schools, top of the search results in many cases, recommends it in two places - <a href="https://www.w3schools.com/howto/howto_css_modal_images.asp" target="_blank">image modals</a> and <a href="https://www.w3schools.com/css/css3_images_modal.asp" target="_blank">responsive image modals</a>. Several search results for &quot;image modal&quot; pop up div solutions - <a href="https://stackoverflow.com/questions/75598914/how-to-display-an-image-clicking-on-it-using-modal-window-on-html-css-and-js" target="_blank">div modal 1</a>, <a href="https://dev.to/salehmubashar/create-an-image-modal-with-javascript-2lf3" target="_blank">div modal 2</a>, <a href="https://www.youtube.com/watch?v=Y9TNHynFjaQ" target="_blank">div modal 3</a>.</p>
|
<p>do you know how many tutorials want you to roll your own modals? It's a not-insignificant amount. W3Schools, top of the search results in many cases, recommends it in two places - <a href="https://www.w3schools.com/howto/howto_css_modal_images.asp" target="_blank" rel="external">image modals</a> and <a href="https://www.w3schools.com/css/css3_images_modal.asp" target="_blank" rel="external">responsive image modals</a>. Several search results for &quot;image modal&quot; pop up div solutions - <a href="https://stackoverflow.com/questions/75598914/how-to-display-an-image-clicking-on-it-using-modal-window-on-html-css-and-js" target="_blank" rel="external">div modal 1</a>, <a href="https://dev.to/salehmubashar/create-an-image-modal-with-javascript-2lf3" target="_blank" rel="external">div modal 2</a>, <a href="https://www.youtube.com/watch?v=Y9TNHynFjaQ" target="_blank" rel="external">div modal 3</a>.</p>
|
||||||
<p>If you don't know of the existence of <code>&lt;dialog&gt;</code>, a search for image modals will not get you there quickly.</p>
|
<p>If you don't know of the existence of <code>&lt;dialog&gt;</code>, a search for image modals will not get you there quickly.</p>
|
||||||
<p>If you search for <em>accessible</em> image modals, you'll still hear about <code>&lt;div&gt;</code>s. Hell, <a href="https://www.w3.org/WAI/ARIA/apg/patterns/dialog-modal/examples/dialog/" target="_blank">W3C's ARIA Authoring Practices Guide uses a <code>&lt;div&gt;</code></a>. You kinda have to go digging to read about the <a href="https://www.scottohara.me/blog/2023/01/26/use-the-dialog-element.html" target="_blank">dialog element from Scott O'Hara</a> or find <a href="https://accessibleweb.dev/modals" target="_blank">AccessibleWeb.dev's piece on modals</a>. Or you can go <a href="https://adrianroselli.com/2025/06/where-to-put-focus-when-opening-a-modal-dialog.html" target="_blank">straight for Adrian Roselli</a> and find examples that use the native <code>&lt;dialog&gt;</code> element. Thanks Adrian!</p>
|
<p>If you search for <em>accessible</em> image modals, you'll still hear about <code>&lt;div&gt;</code>s. Hell, <a href="https://www.w3.org/WAI/ARIA/apg/patterns/dialog-modal/examples/dialog/" target="_blank" rel="external">W3C's ARIA Authoring Practices Guide uses a <code>&lt;div&gt;</code></a>. You kinda have to go digging to read about the <a href="https://www.scottohara.me/blog/2023/01/26/use-the-dialog-element.html" target="_blank" rel="external">dialog element from Scott O'Hara</a> or find <a href="https://accessibleweb.dev/modals" target="_blank" rel="external">AccessibleWeb.dev's piece on modals</a>. Or you can go <a href="https://adrianroselli.com/2025/06/where-to-put-focus-when-opening-a-modal-dialog.html" target="_blank" rel="external">straight for Adrian Roselli</a> and find examples that use the native <code>&lt;dialog&gt;</code> element. Thanks Adrian!</p>
|
||||||
<p>Did I roll my own modal at first? Regretfully, yes. I'd used the <code>&lt;dialog&gt;</code> element before... several years ago... in a project I don't have access to anymore... Needless to say, I had forgotten about its existence.</p>
|
<p>Did I roll my own modal at first? Regretfully, yes. I'd used the <code>&lt;dialog&gt;</code> element before... several years ago... in a project I don't have access to anymore... Needless to say, I had forgotten about its existence.</p>
|
||||||
<p>Anyway, I got there. Eventually. So let's talk about modals and <code>&lt;dialog&gt;</code>.</p>
|
<p>Anyway, I got there. Eventually. So let's talk about modals and <code>&lt;dialog&gt;</code>.</p>
|
||||||
<h3 id="what-does-dialog-give-us">what does <code>&lt;dialog&gt;</code> give us?</h3>
|
<h3 id="what-does-dialog-give-us">what does <code>&lt;dialog&gt;</code> give us?</h3>
|
||||||
@ -38,7 +38,7 @@
|
|||||||
<li>the <code>autofocus</code> attribute for in-modal elements to set which element should receive focus on opening the modal</li>
|
<li>the <code>autofocus</code> attribute for in-modal elements to set which element should receive focus on opening the modal</li>
|
||||||
<li>the <code>open</code> attribute which is set on the <code>&lt;dialog&gt;</code> when open and removed when closed (when you use the functions mentioned previously)</li>
|
<li>the <code>open</code> attribute which is set on the <code>&lt;dialog&gt;</code> when open and removed when closed (when you use the functions mentioned previously)</li>
|
||||||
</ol>
|
</ol>
|
||||||
<p>and more. This is just the pieces in use for me. There's also things like <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#additional_notes" target="_blank">setting forms so that submission closes the dialog</a> (point 1 in that list).</p>
|
<p>and more. This is just the pieces in use for me. There's also things like <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#additional_notes" target="_blank" rel="external">setting forms so that submission closes the dialog</a> (point 1 in that list).</p>
|
||||||
<h3 id="what-doesnt-it-give-us">what doesn't it give us?</h3>
|
<h3 id="what-doesnt-it-give-us">what doesn't it give us?</h3>
|
||||||
<ol>
|
<ol>
|
||||||
<li>a close button - gotta roll your own and attach the requisite <code>.close()</code> call (or rely on users hitting escape or clicking the backdrop)</li>
|
<li>a close button - gotta roll your own and attach the requisite <code>.close()</code> call (or rely on users hitting escape or clicking the backdrop)</li>
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<blockquote>
|
<blockquote>
|
||||||
<p>Do not add the <code>tabindex</code> property to the <code>&lt;dialog&gt;</code> element as it is not interactive and does not receive focus.</p>
|
<p>Do not add the <code>tabindex</code> property to the <code>&lt;dialog&gt;</code> element as it is not interactive and does not receive focus.</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<p>— <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#additional_notes" target="_blank"><code>&lt;dialog&gt;</code>: additional notes</a> (point 3 in that list).</p>
|
<p>— <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#additional_notes" target="_blank" rel="external"><code>&lt;dialog&gt;</code>: additional notes</a> (point 3 in that list).</p>
|
||||||
<p>despite this, I found that in Firefox (but not Edge), the <em><code>&lt;dialog&gt;</code> itself was focusable</em>. I have no idea why, but I tested this on a totally unstyled and unmodified page and still found it to be true. As a focusable element, it made no sense. It had no interactivity and could not be activated.</p>
|
<p>despite this, I found that in Firefox (but not Edge), the <em><code>&lt;dialog&gt;</code> itself was focusable</em>. I have no idea why, but I tested this on a totally unstyled and unmodified page and still found it to be true. As a focusable element, it made no sense. It had no interactivity and could not be activated.</p>
|
||||||
<p>I'm still torn: do I add <code>tabindex=&quot;-1&quot;</code>? MDN specifically says not to, but I'm pretty sure they're warning against making it <em>focusable</em>. Why warn against making it nonfocusable when <em>it's not supposed to be focusable in the first place</em>, after all?</p>
|
<p>I'm still torn: do I add <code>tabindex=&quot;-1&quot;</code>? MDN specifically says not to, but I'm pretty sure they're warning against making it <em>focusable</em>. Why warn against making it nonfocusable when <em>it's not supposed to be focusable in the first place</em>, after all?</p>
|
||||||
<p>At current, I'm ambivalent, but I've added <code>tabindex=&quot;-1&quot;</code> to handle Firefox's poor behavior. Making the dialog focusable is unhelpful and confusing.</p>
|
<p>At current, I'm ambivalent, but I've added <code>tabindex=&quot;-1&quot;</code> to handle Firefox's poor behavior. Making the dialog focusable is unhelpful and confusing.</p>
|
||||||
@ -69,7 +69,7 @@
|
|||||||
<h3 id="css">css</h3>
|
<h3 id="css">css</h3>
|
||||||
<p>here's the most relevant parts of the CSS:</p>
|
<p>here's the most relevant parts of the CSS:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><code>dialog::backdrop</code> was given a <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Colors/Using_relative_colors" target="_blank">relatively calculated</a> color - <code>rgba(from var(--color-bg) r g b / .8)</code> - as well as a blur</li>
|
<li><code>dialog::backdrop</code> was given a <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Colors/Using_relative_colors" target="_blank" rel="external">relatively calculated</a> color - <code>rgba(from var(--color-bg) r g b / .8)</code> - as well as a blur</li>
|
||||||
<li><code>body:has(dialog[open])</code> has <code>overflow: hidden</code> set</li>
|
<li><code>body:has(dialog[open])</code> has <code>overflow: hidden</code> set</li>
|
||||||
<li><code>dialog img</code> uses a <code>max-height</code> as well as <code>object-fit: contain</code></li>
|
<li><code>dialog img</code> uses a <code>max-height</code> as well as <code>object-fit: contain</code></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -83,7 +83,7 @@
|
|||||||
<updated>2026-02-19T00:00:00Z</updated>
|
<updated>2026-02-19T00:00:00Z</updated>
|
||||||
<id>https://leecat.art/eleventy-lessons/</id>
|
<id>https://leecat.art/eleventy-lessons/</id>
|
||||||
<content type="html"><p>recently I wrote <em>several</em> sites using <a href="https://www.11ty.dev/" target="_blank" rel="external">Eleventy</a> (4? 5?). Including, over the past few days, rewriting this one! That's right, if you're reading this, we're now running on 11ty and hosted by <a href="https://heckin.technology/" target="_blank" rel="external">heckin.technology</a>. See ya, GitHub. Won't miss ya.</p>
|
<content type="html"><p>recently I wrote <em>several</em> sites using <a href="https://www.11ty.dev/" target="_blank" rel="external">Eleventy</a> (4? 5?). Including, over the past few days, rewriting this one! That's right, if you're reading this, we're now running on 11ty and hosted by <a href="https://heckin.technology/" target="_blank" rel="external">heckin.technology</a>. See ya, GitHub. Won't miss ya.</p>
|
||||||
<p>I've compiled some of the things I've learned in a standalone site: <a href="https://inherentlee.codeberg.page/lessons/" target="_blank" rel="external">11ty Lessons</a>.</p>
|
<p>Originally, I compiled some of the things I've learned in a standalone site.</p>
|
||||||
<p>however, since I don't know how much I'll focus on that specific site - it is mostly a sample - I am re-publishing the most useful information here. I'll skip the intro to Markdown content. I'm also going to update them where I've learned more or to better match what's represented on this site.</p>
|
<p>however, since I don't know how much I'll focus on that specific site - it is mostly a sample - I am re-publishing the most useful information here. I'll skip the intro to Markdown content. I'm also going to update them where I've learned more or to better match what's represented on this site.</p>
|
||||||
<p>this will comprise of 4 parts: <a href="https://leecat.art/eleventy-lessons/#related-posts">related posts</a>, <a href="https://leecat.art/eleventy-lessons/#featured-images">featured images</a>, <a href="https://leecat.art/eleventy-lessons/#pagination">pagination</a>, and <a href="https://leecat.art/eleventy-lessons/#tag-image-preview">tag image preview</a>. Feel free to jump ahead, as none depend on the others.</p>
|
<p>this will comprise of 4 parts: <a href="https://leecat.art/eleventy-lessons/#related-posts">related posts</a>, <a href="https://leecat.art/eleventy-lessons/#featured-images">featured images</a>, <a href="https://leecat.art/eleventy-lessons/#pagination">pagination</a>, and <a href="https://leecat.art/eleventy-lessons/#tag-image-preview">tag image preview</a>. Feel free to jump ahead, as none depend on the others.</p>
|
||||||
<hr>
|
<hr>
|
||||||
@ -261,6 +261,8 @@ pagination:
|
|||||||
eleventyConfig<span class="token punctuation">.</span><span class="token function">addCollection</span><span class="token punctuation">(</span><span class="token string">"tagPagination"</span><span class="token punctuation">,</span> <span class="token keyword">function</span><span class="token punctuation">(</span><span class="token parameter">collection</span><span class="token punctuation">)</span> <span class="token punctuation">{</span>
|
eleventyConfig<span class="token punctuation">.</span><span class="token function">addCollection</span><span class="token punctuation">(</span><span class="token string">"tagPagination"</span><span class="token punctuation">,</span> <span class="token keyword">function</span><span class="token punctuation">(</span><span class="token parameter">collection</span><span class="token punctuation">)</span> <span class="token punctuation">{</span>
|
||||||
<span class="token comment">// Get unique list of tags</span>
|
<span class="token comment">// Get unique list of tags</span>
|
||||||
<span class="token keyword">let</span> tagSet <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Set</span><span class="token punctuation">(</span>collection<span class="token punctuation">.</span><span class="token function">getAllSorted</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">flatMap</span><span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token parameter">post</span><span class="token punctuation">)</span> <span class="token operator">=></span> post<span class="token punctuation">.</span>data<span class="token punctuation">.</span>tags <span class="token operator">||</span> <span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
|
<span class="token keyword">let</span> tagSet <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Set</span><span class="token punctuation">(</span>collection<span class="token punctuation">.</span><span class="token function">getAllSorted</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">flatMap</span><span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token parameter">post</span><span class="token punctuation">)</span> <span class="token operator">=></span> post<span class="token punctuation">.</span>data<span class="token punctuation">.</span>tags <span class="token operator">||</span> <span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
|
||||||
|
<span class="token comment">// Remove "structural" tags</span>
|
||||||
|
tagSet <span class="token operator">=</span> tagSet<span class="token punctuation">.</span><span class="token function">difference</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">Set</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"posts"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
|
||||||
|
|
||||||
<span class="token comment">// Get each item that matches the tag</span>
|
<span class="token comment">// Get each item that matches the tag</span>
|
||||||
<span class="token keyword">let</span> paginationSize <span class="token operator">=</span> <span class="token number">6</span><span class="token punctuation">;</span>
|
<span class="token keyword">let</span> paginationSize <span class="token operator">=</span> <span class="token number">6</span><span class="token punctuation">;</span>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1467,6 +1478,20 @@ export { HeadingAnchors }</script>
|
|||||||
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
<h2 data-ha-exclude="" id="related-posts">related posts</h2>
|
||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/hand-dyed-gold-handspun/">
|
||||||
|
|
||||||
|
<img src="/img/gold-handspun.jpg" alt="3 skeins, one small and two large, of a rich golden-orange handspun with light tonal effects, in about a DK weight" loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="hand-dyed-gold-handspun">hand-dyed gold handspun </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>yarn</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/spinners-dream-handspun/">
|
<a class="postlink" href="/spinners-dream-handspun/">
|
||||||
|
|
||||||
@ -1482,25 +1507,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/coral-reef-handspun/">
|
<a class="postlink" href="/orion-handspun/">
|
||||||
|
|
||||||
<img src="/img/coral-reef-handspun.jpg" alt="2 skeins, one large and one small, of a heathered grey yarn with hints of blue and orange in about a sport or DK weight." loading="lazy" decoding="async" width="1000" height="666">
|
<img src="/img/orion-handspun.jpg" alt="3 skeins of handspun yarn, 1 large and 2 small. One of the small skeins is a little more inconsistent weight than the other two - this one was spun on drop spindle about 2 years ago. The other two are about a sport or maybe a DK weight. All three are a gold colorway with tiny hints of orange and a pale light green." loading="lazy" decoding="async" width="1000" height="666">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="coral-reef-handspun">coral reef handspun</h2>
|
<h2 data-ha-exclude="" id="orion-handspun">orion handspun </h2>
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>yarn</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/spinning-plants/">
|
|
||||||
|
|
||||||
<img src="/img/plant-handspun.jpg" alt="6 small skeins of handspun yarn, each made from a different plant fiber. from top, we have flax (medium brown, rough); what is probably lotus (golden, shiny and soft); banana (white and semi shiny); hemp (light brown, rough); tencel (white and very shiny); ramie (a particularly small skein, white and semi shiny)" loading="lazy" decoding="async" width="1000" height="874">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="spinning-plants">spinning plants</h2>
|
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>yarn</li>
|
<li>yarn</li>
|
||||||
@ -1540,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/fire-and-ice-handspun/` was built on 2026-03-25T20:00:18.518Z -->
|
<!-- This page `/fire-and-ice-handspun/` was built on 2026-04-21T21:31:06.796Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1473,11 +1484,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/zipper-bifold-green/">
|
<a class="postlink" href="/snap-pouch/">
|
||||||
|
|
||||||
<img src="/img/zipper-bifold-green.jpg" alt="A collage showing a green leather wallet with a zippered pocket built into one external side." loading="lazy" decoding="async" width="1000" height="1332">
|
<img src="/img/snap-pouches.jpg" alt="4 square pouches that close with snaps. 2 have loops that attach keyrings. They are in various colors of leather." loading="lazy" decoding="async" width="900" height="1200">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="zipper-bifold-green">zipper bifold (green)</h2>
|
<h2 data-ha-exclude="" id="snap-pouch">snap pouch </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1487,11 +1498,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/rachels-bracelets/">
|
<a class="postlink" href="/makers-mark-keychain/">
|
||||||
|
|
||||||
<img src="/img/rachel-bracelets.jpg" alt="Two pink leather bracelets with stainless steel hardware and aqua stitching." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/makers-mark-keychain.jpg" alt="A keychain on an iridescent rainbow split ring. It is dark brown/grey leather and has LEE CAT ART stamped into it." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="rachels-bracelets">rachel's bracelets</h2>
|
<h2 data-ha-exclude="" id="makers-mark-keychain">maker's mark keychain </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1501,14 +1512,14 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/fd-signifier-and-oppositional-sexism/">
|
<a class="postlink" href="/nine-pocket-bifold/">
|
||||||
|
|
||||||
<img src="/img/sheep.jpg" alt="Image unrelated to post. A mama sheep with two babies curled up next to her in a grassy field." loading="lazy" decoding="async" width="1000" height="450">
|
<img src="/img/nine-pocket-bifold.jpg" alt="A hand stitched full grain leather bifold wallet in dark plum leather. It has a main bill pocket and a symmetrical interior with a hidden pocket and 3 card pockets on each side." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="fd-signifier-and-oppositional-sexism">fd signifier & oppositional sexism</h2>
|
<h2 data-ha-exclude="" id="nine-pocket-bifold">nine pocket bifold </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>gender</li>
|
<li>leather</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1545,6 +1556,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/fishhook-pride-keychains/` was built on 2026-03-25T20:00:18.515Z -->
|
<!-- This page `/fishhook-pride-keychains/` was built on 2026-04-21T21:31:06.788Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1480,52 +1491,50 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/squarsh/">
|
<a class="postlink" href="/fat-raccoon/">
|
||||||
|
|
||||||
<img src="/img/squarsh-prints.jpg" alt="Two identical prints of a delicata squash. The body of the squash is cornsilk (muted yellow), the stem and stripes in mint green, and the shadows in lilac." loading="lazy" decoding="async" width="1000" height="1000">
|
<img src="/img/fat-raccoon-print.jpg" alt="A block print in black ink of a rotund raccoon raising a welcoming paw towards the viewer." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="squarsh">squarsh</h2>
|
<h2 data-ha-exclude="" id="fat-raccoon">fat raccoon </h2>
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/artisans-cooperative-cards/">
|
|
||||||
|
|
||||||
<img src="/img/artisans-coop-cards.jpg" alt="2 white greeting cards with the Artisans Cooperative logo, a chicken. One card has a single print of the chicken in black ink, and the other has two overlapping prints in blue and red ink" loading="lazy" decoding="async" width="1000" height="1000">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="artisans-cooperative-cards">artisans cooperative cards</h2>
|
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/trans-rights-skull/">
|
<a class="postlink" href="/geese/">
|
||||||
|
|
||||||
<img src="/img/trans-rights-print.jpg" alt="A print in mostly black ink of a smiling skull with a speech bubble. In pink and blue, the speech bubble reads 'trans rights!'" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/geese-print.jpg" alt="Two Canada geese and their reflections in the water. One is calmly swimming away, while the over leans over and HONKS!" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="trans-rights-skull">trans rights skull</h2>
|
<h2 data-ha-exclude="" id="geese">geese </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>sticker</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
<li>pin</li>
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>gender</li>
|
<li class="post">
|
||||||
|
<a class="postlink" href="/euphorbia/">
|
||||||
|
|
||||||
|
<img src="/img/euphorbia-print.jpg" alt="A print in black ink on brown paper. It depicts a stem of euphorbia, a plant with long, thin leaves and many clustered flowers." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="euphorbia">euphorbia </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1562,6 +1571,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/five-of-them/` was built on 2026-03-25T20:00:18.508Z -->
|
<!-- This page `/five-of-them/` was built on 2026-04-21T21:31:06.777Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1467,46 +1478,52 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/killdeer/">
|
<a class="postlink" href="/swallowtail-on-snowdrops/">
|
||||||
|
|
||||||
<img src="/img/killdeer-print.jpg" alt="A print of a killdeer in black ink." loading="lazy" decoding="async" width="1000" height="1333">
|
<img src="/img/swallowtail-on-snowdrops-print.jpg" alt="A block print of a tiger swallowtail butterfly dangling from Japanese snowdrops, a white drooping flower." loading="lazy" decoding="async" width="1000" height="1332">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="killdeer">killdeer</h2>
|
<h2 data-ha-exclude="" id="swallowtail-on-snowdrops">swallowtail on snowdrops </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
</ul>
|
<li>shirt</li>
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/brown-creeper/">
|
|
||||||
|
|
||||||
<img src="/img/brown-creeper-print.jpg" alt="2 copies of the same print side by side. In yellow, black, and purple ink, a brown creeper, a small bird, is depicted, well camouflaged against a tree trunk." loading="lazy" decoding="async" width="1000" height="1000">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="brown-creeper">brown creeper</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/hair/">
|
<a class="postlink" href="/foxgloves/">
|
||||||
|
|
||||||
<img src="/img/hair-print.jpg" alt="A print in black ink of belly hair." loading="lazy" decoding="async" width="1000" height="710">
|
<img src="/img/foxgloves-print.jpg" alt="A print of a cluster of foxgloves. The background is inked in green, with negative space and pink details making up the foxgloves." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="hair">hair</h2>
|
<h2 data-ha-exclude="" id="foxgloves">foxgloves </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>gender</li>
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/spotted-towhee/">
|
||||||
|
|
||||||
|
<img src="/img/spotted-towhee-print.jpg" alt="A block print of a spotted towhee mid-leap." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="spotted-towhee">spotted towhee </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1543,6 +1560,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/fix-your-hearts/` was built on 2026-03-25T20:00:18.490Z -->
|
<!-- This page `/fix-your-hearts/` was built on 2026-04-21T21:31:06.791Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1480,56 +1491,50 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/trans-wrongs-skull/">
|
<a class="postlink" href="/become-unbutterable/">
|
||||||
|
|
||||||
<img src="/img/trans-wrongs-print.jpg" alt="A smiling skull with devil horns and a little spiked tail, and a speech bubble reading 'trans wrongs!'" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/become-unbutterable.jpg" alt="3 copies of the same stamp in orange ink are spread out next to the hand carved rubber stamp they were made from. They show a cat lying on his back with paws curled, holding a butter knife in his mouth. Text around the cat reads, in all caps, 'become unbutterable.'" loading="lazy" decoding="async" width="1000" height="562">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="trans-wrongs-skull">trans wrongs skull</h2>
|
<h2 data-ha-exclude="" id="become-unbutterable">become unbutterable </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/quorbs/">
|
||||||
|
|
||||||
|
<img src="/img/quorbs-print.jpg" alt="A print in two layers of color showing two rotund quails on a branch. Most of the details are in black ink, then there is a layer with a brown gradient filling in some color on the head and breast." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="quorbs">quorbs </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>highlight</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/anarchy-autism/">
|
||||||
|
|
||||||
|
<img src="/img/anarchy-autism-rainbow-print.jpg" alt="A print in rainbow ink that says autism with the anarchy A." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="anarchy-autism">anarchy autism </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
<li>sticker</li>
|
<li>sticker</li>
|
||||||
|
|
||||||
<li>pin</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/five-of-them/">
|
|
||||||
|
|
||||||
<img src="/img/five-of-them-print.jpg" alt="A block print of five mule deer grazing in a dark green field. The deer are partially negative space and partially brown ink detailing." loading="lazy" decoding="async" width="1000" height="594">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="five-of-them">five of them</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
</ul>
|
<li>pin</li>
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/nonbinary-flag/">
|
|
||||||
|
|
||||||
<img src="/img/nonbinary-flag-print.jpg" alt="A print of a nonbinary flag waving, with yellow, white (uninked), purple, and black stripes." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="nonbinary-flag">nonbinary flag</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>card</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
@ -1566,6 +1571,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/flatfish/` was built on 2026-03-25T20:00:18.497Z -->
|
<!-- This page `/flatfish/` was built on 2026-04-21T21:31:06.771Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1485,55 +1496,49 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/big-pidge/">
|
<a class="postlink" href="/killdeer/">
|
||||||
|
|
||||||
<img src="/img/big-pidge-print.jpg" alt="A block print of a superb speciman of pigeon, inked mostly in black but with patches of green, blue, and purple to indicate iridescence." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/killdeer-print.jpg" alt="A print of a killdeer in black ink." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="big-pidge">big pidge</h2>
|
<h2 data-ha-exclude="" id="killdeer">killdeer </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/foxgloves/">
|
<a class="postlink" href="/kestrel-zine/">
|
||||||
|
|
||||||
<img src="/img/foxgloves-print.jpg" alt="A print of a cluster of foxgloves. The background is inked in green, with negative space and pink details making up the foxgloves." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/kestrel-zine.jpg" alt="A 5 photo collage showing the front and back cover as well as 3 full spreads of a folded zine about Kestrel, my dog, who is a 65lb Malinois with a goofy smile and floppy ears. it is printed in two layers of color, blue and orange, and each image depicts Kestrel in various posts... alert and watchful, resting, looking mopey, wearing a sweatshirt." loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="foxgloves">foxgloves</h2>
|
<h2 data-ha-exclude="" id="kestrel-zine">kestrel zine </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>zine</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>highlight</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/stellars-jay/">
|
<a class="postlink" href="/become-unbutterable/">
|
||||||
|
|
||||||
<img src="/img/stellars-jay-print.jpg" alt="A print of a stellar's jay, a beautiful black and blue bird, about to take off from a branch" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/become-unbutterable.jpg" alt="3 copies of the same stamp in orange ink are spread out next to the hand carved rubber stamp they were made from. They show a cat lying on his back with paws curled, holding a butter knife in his mouth. Text around the cat reads, in all caps, 'become unbutterable.'" loading="lazy" decoding="async" width="1000" height="562">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="stellars-jay">stellar's jay</h2>
|
<h2 data-ha-exclude="" id="become-unbutterable">become unbutterable </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
|
||||||
|
|
||||||
<li>shirt</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1569,6 +1574,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/flicker/` was built on 2026-03-25T20:00:18.499Z -->
|
<!-- This page `/flicker/` was built on 2026-04-21T21:31:06.773Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1481,11 +1492,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/stampede-journal/">
|
<a class="postlink" href="/green-memo-pad/">
|
||||||
|
|
||||||
<img src="/img/stampede-journal.jpg" alt="A 4-part collage of a hardcover book, showing a coloring page with 'stampede!' written across it." loading="lazy" decoding="async" width="1000" height="1777">
|
<img src="/img/green-memo-pad.jpg" alt="A three panel collage showcasing a small green memo pad." loading="lazy" decoding="async" width="1000" height="1776">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="stampede-journal">stampede journal</h2>
|
<h2 data-ha-exclude="" id="green-memo-pad">green memo pad </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>book</li>
|
<li>book</li>
|
||||||
@ -1509,11 +1520,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/tiny-books/">
|
<a class="postlink" href="/striped-journal/">
|
||||||
|
|
||||||
<img src="/img/tiny-book.jpg" alt="A three panel collage showing a book held in the palm of a hand." loading="lazy" decoding="async" width="1000" height="1000">
|
<img src="/img/striped-journal.jpg" alt="A three panel collage showcasing a journal with a striped cover." loading="lazy" decoding="async" width="1000" height="1776">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="tiny-books">tiny books</h2>
|
<h2 data-ha-exclude="" id="striped-journal">striped journal </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>book</li>
|
<li>book</li>
|
||||||
@ -1553,6 +1564,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/flocked-notebook/` was built on 2026-03-25T20:00:18.481Z -->
|
<!-- This page `/flocked-notebook/` was built on 2026-04-21T21:31:06.761Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,27 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/designing-a-bag/">
|
<a class="postlink" href="/wrap-bracelets/">
|
||||||
|
|
||||||
<img src="/img/shoelace-bag.jpg" alt="a 3-image collage showcasing a leather crossbody bag. the leather body is brown and fairly simple. up the narrow sides, rope is laced through grommets in a style resembling a shoe lacing. the rope forms the handle and loops seamlessly through the other side of the bag, joining in one point in a figure-8 follow-through knot. At the bottom corners, there are small diagonal lines of stitching to give the bag a small lip around the base and ensure small objects don't slide out." loading="lazy" decoding="async" width="1000" height="1777">
|
<img src="/img/leather-wrap-bracelets.jpg" alt="two wrists, each wearing a black leather wrap bracelet. the upper bracelet is a thin strap wrapped 3 times around the wrist. the lower bracelet wraps twice, with a thicker strap, and has carefully placed spikes that avoid the wrap spots." loading="lazy" decoding="async" width="1000" height="1333">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="designing-a-bag">designing a bag</h2>
|
<h2 data-ha-exclude="" id="wrap-bracelets">wrap bracelets </h2>
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>leather</li>
|
|
||||||
|
|
||||||
<li>software</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/gradient-purse-strap/">
|
|
||||||
|
|
||||||
<img src="/img/gradient-purse-strap.jpg" alt="a coiled up purse strap in gradient cool colors - we can see green, teal, indigo, and a slightly pinkish purple. It has brass hardware and is stiched along its length with cream stitches." loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="gradient-purse-strap">gradient purse strap</h2>
|
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1498,11 +1493,25 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/leaf-patches/">
|
<a class="postlink" href="/bag-strap/">
|
||||||
|
|
||||||
<img src="/img/leaf-patches-oak.jpg" alt="Several oak-leaf-shaped leather patches with stitching holes punched around the edges." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/bag-strap.jpg" alt="A nylon webbing shoulder strap in bright teal with clips on each end." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="leaf-patches">leaf patches</h2>
|
<h2 data-ha-exclude="" id="bag-strap">bag strap </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>leather</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/triangle-pouch/">
|
||||||
|
|
||||||
|
<img src="/img/triangle-pouch.jpg" alt="5 small triangular pouches made of leather in two sizes and various colors." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="triangle-pouch">triangle pouch </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1542,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/foldy-wallet-with-thumb-slide/` was built on 2026-03-25T20:00:18.483Z -->
|
<!-- This page `/foldy-wallet-with-thumb-slide/` was built on 2026-04-21T21:31:06.763Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1468,11 +1479,11 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/brookes-cuff-bracelets/">
|
<a class="postlink" href="/zipper-bifold/">
|
||||||
|
|
||||||
<img src="/img/brooke-cuffs.jpg" alt="Olive green leather cuffs with silver spikes and a shearling lining." loading="lazy" decoding="async" width="900" height="1200">
|
<img src="/img/zipper-bifold.jpg" alt="A collage showing a hand-stitched leather bifold with a zippered coin pocket on one exterior side." loading="lazy" decoding="async" width="1000" height="1777">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="brookes-cuff-bracelets">brooke's cuff bracelets</h2>
|
<h2 data-ha-exclude="" id="zipper-bifold">zipper bifold </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1482,11 +1493,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/leather-chest-harness/">
|
<a class="postlink" href="/rachels-bracelets/">
|
||||||
|
|
||||||
<img src="/img/leather-chest-harness.jpg" alt="Someone from chin to mid-torso, wearing a dark teal leather chest harness with matte black fittings over a t shirt." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/rachel-bracelets.jpg" alt="Two pink leather bracelets with stainless steel hardware and aqua stitching." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="leather-chest-harness">leather chest harness</h2>
|
<h2 data-ha-exclude="" id="rachels-bracelets">rachel's bracelets </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1496,11 +1507,11 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/eight-pocket-bifold/">
|
<a class="postlink" href="/pinatex-wallet-with-zipper/">
|
||||||
|
|
||||||
<img src="/img/eight-pocket-bifold.jpg" alt="A 3-picture collage showing a hand stitched full grain leather bifold wallet in dark plum leather. It has a main bill pocket and a asymmetrical interior with a hidden pocket and 3 card pockets on the right, and a hidden pocket and 2 card pockets on the left. The left front pocket has a small naturally occuring hole." loading="lazy" decoding="async" width="1000" height="1777">
|
<img src="/img/pinatex-ten-pocket-bifold.jpg" alt="A two-picture collage showing the inside and outside of a wallet made with piñatex, a leather alternative made from pineapple leaves. It is two tone blue with a pink accent and has a zippered pocket built in." loading="lazy" decoding="async" width="1000" height="1331">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="eight-pocket-bifold">eight pocket bifold</h2>
|
<h2 data-ha-exclude="" id="pinatex-wallet-with-zipper">piñatex wallet with zipper </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>leather</li>
|
<li>leather</li>
|
||||||
@ -1540,6 +1551,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/foldy-wallet/` was built on 2026-03-25T20:00:18.482Z -->
|
<!-- This page `/foldy-wallet/` was built on 2026-04-21T21:31:06.763Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1541,6 +1552,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/fountain-pen-friendly-stationery/` was built on 2026-03-25T20:00:18.489Z -->
|
<!-- This page `/fountain-pen-friendly-stationery/` was built on 2026-04-21T21:31:06.769Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1484,31 +1495,37 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/iris/">
|
<a class="postlink" href="/stellars-jay/">
|
||||||
|
|
||||||
<img src="/img/iris-prints.jpg" alt="3 copies of the same print of iris flowers and a bud, done in slightly varied color schemes." loading="lazy" decoding="async" width="1000" height="562">
|
<img src="/img/stellars-jay-print.jpg" alt="A print of a stellar's jay, a beautiful black and blue bird, about to take off from a branch" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="iris">iris</h2>
|
<h2 data-ha-exclude="" id="stellars-jay">stellar's jay </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>card</li>
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/kniphofia/">
|
<a class="postlink" href="/flicker/">
|
||||||
|
|
||||||
<img src="/img/kniphofia-print.jpg" alt="A print of a brightly colored flower in 4 layers of color" loading="lazy" decoding="async" width="1000" height="1333">
|
<img src="/img/flicker-print.jpg" alt="A print in black, brown, and red ink of a northern flicker (a type of woodpecker). Viewed from the back, he is looking over his shoulder and upward towards something unseen above him (my bird feeder)." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="kniphofia">kniphofia</h2>
|
<h2 data-ha-exclude="" id="flicker">flicker </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>shirt</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1560,6 +1577,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/foxgloves/` was built on 2026-03-25T20:00:18.509Z -->
|
<!-- This page `/foxgloves/` was built on 2026-04-21T21:31:06.778Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1211,6 +1222,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/1/` was built on 2026-03-25T20:00:21.202Z -->
|
<!-- This page `/gallery/1/` was built on 2026-04-21T21:31:09.548Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1215,6 +1226,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/10/` was built on 2026-03-25T20:00:23.926Z -->
|
<!-- This page `/gallery/10/` was built on 2026-04-21T21:31:12.042Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1093,6 +1104,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/11/` was built on 2026-03-25T20:00:24.161Z -->
|
<!-- This page `/gallery/11/` was built on 2026-04-21T21:31:12.248Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1161,13 +1172,15 @@ footer a:focus-visible {
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/luminescent/">
|
<a class="postlink" href="/luminescent/">
|
||||||
|
|
||||||
<img src="/img/luminescent-print.jpg" alt="A print of a tattooed woman in bright highlighter yellow underwear." loading="lazy" decoding="async" width="900" height="1200">
|
<img src="/img/luminescent-print.jpg" alt="A print of a tattooed woman in bright highlighter yellow underwear." class="blur" loading="lazy" decoding="async" width="900" height="1200">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="luminescent">luminescent</h2>
|
<h2 data-ha-exclude="" id="luminescent-mature">luminescent (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1225,6 +1238,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/2/` was built on 2026-03-25T20:00:21.528Z -->
|
<!-- This page `/gallery/2/` was built on 2026-04-21T21:31:09.852Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1113,9 +1124,9 @@ footer a:focus-visible {
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/bottom-growth/">
|
<a class="postlink" href="/bottom-growth/">
|
||||||
|
|
||||||
<img src="/img/bottom-growth-prints.jpg" alt="4 copies of the same print in various color schemes, laid out in a 2x2 grid. The print shows testosterone-driven bottom growth of a clitoris. The color schemes are, clockwise from top right, brown on turquoise, red on cornsilk (muted yellow), violet on magenta, and mint green on lilac." loading="lazy" decoding="async" width="1000" height="1000">
|
<img src="/img/bottom-growth-prints.jpg" alt="4 copies of the same print in various color schemes, laid out in a 2x2 grid. The print shows testosterone-driven bottom growth of a clitoris. The color schemes are, clockwise from top right, brown on turquoise, red on cornsilk (muted yellow), violet on magenta, and mint green on lilac." class="blur" loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="bottom-growth">bottom growth</h2>
|
<h2 data-ha-exclude="" id="bottom-growth-mature">bottom growth (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1207,6 +1218,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/3/` was built on 2026-03-25T20:00:21.774Z -->
|
<!-- This page `/gallery/3/` was built on 2026-04-21T21:31:10.119Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1215,6 +1226,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/4/` was built on 2026-03-25T20:00:22.099Z -->
|
<!-- This page `/gallery/4/` was built on 2026-04-21T21:31:10.414Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1209,6 +1220,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/5/` was built on 2026-03-25T20:00:22.393Z -->
|
<!-- This page `/gallery/5/` was built on 2026-04-21T21:31:10.690Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1149,13 +1160,15 @@ footer a:focus-visible {
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/rope-one/">
|
<a class="postlink" href="/rope-one/">
|
||||||
|
|
||||||
<img src="/img/rope-print-1.jpg" alt="A print of a nude trans woman in an asymmetrical rope harness." loading="lazy" decoding="async" width="1000" height="1242">
|
<img src="/img/rope-print-1.jpg" alt="A print of a nude trans woman in an asymmetrical rope harness." class="blur" loading="lazy" decoding="async" width="1000" height="1242">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="rope-one">rope (one)</h2>
|
<h2 data-ha-exclude="" id="rope-one-mature">rope (one) (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -1213,6 +1226,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/6/` was built on 2026-03-25T20:00:22.748Z -->
|
<!-- This page `/gallery/6/` was built on 2026-04-21T21:31:10.993Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1009,9 +1020,9 @@ footer a:focus-visible {
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/girldick/">
|
<a class="postlink" href="/girldick/">
|
||||||
|
|
||||||
<img src="/img/girldick-shirt.jpg" alt="A butch cooking and wearing a cropped tee with blue cap sleeves that reads girldick in blue G.I.Joe font." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/girldick-shirt.jpg" alt="A butch cooking and wearing a cropped tee with blue cap sleeves that reads girldick in blue G.I.Joe font." class="blur" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="girldick">girldick</h2>
|
<h2 data-ha-exclude="" id="girldick-mature">girldick (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1031,9 +1042,9 @@ footer a:focus-visible {
|
|||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/boypussy/">
|
<a class="postlink" href="/boypussy/">
|
||||||
|
|
||||||
<img src="/img/boypussy-shirt.jpg" alt="A butch holding a chainsaw and wearing a tank top that reads boypussy in pink Barbie font." loading="lazy" decoding="async" width="1000" height="1250">
|
<img src="/img/boypussy-shirt.jpg" alt="A butch holding a chainsaw and wearing a tank top that reads boypussy in pink Barbie font." class="blur" loading="lazy" decoding="async" width="1000" height="1250">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="boypussy">boypussy</h2>
|
<h2 data-ha-exclude="" id="boypussy-mature">boypussy (mature)</h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1257,6 +1268,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/7/` was built on 2026-03-25T20:00:23.121Z -->
|
<!-- This page `/gallery/7/` was built on 2026-04-21T21:31:11.287Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1239,6 +1250,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/8/` was built on 2026-03-25T20:00:23.261Z -->
|
<!-- This page `/gallery/8/` was built on 2026-04-21T21:31:11.419Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1241,6 +1252,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/9/` was built on 2026-03-25T20:00:23.585Z -->
|
<!-- This page `/gallery/9/` was built on 2026-04-21T21:31:11.722Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -175,6 +175,11 @@
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -190,7 +195,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -437,6 +442,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1199,6 +1210,6 @@ footer a:focus-visible {
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gallery/` was built on 2026-03-25T20:00:18.519Z -->
|
<!-- This page `/gallery/` was built on 2026-04-21T21:31:06.797Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1485,34 +1496,14 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/greeting-loons/">
|
<a class="postlink" href="/fishhook-pride-keychains/">
|
||||||
|
|
||||||
<img src="/img/greeting-loons.jpg" alt="A pile of hand-printed A2 size greeting cards. A loon rearing up with outstretched wings spans the front and back of the cards." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/fishhook-keychain-nonbinary.jpg" alt="a keychain with an iridescent fishhook style attachment linked via leather to an iridescent keyring. the leather is stitched with nonbinary flag colors." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="greeting-loons">greeting loons</h2>
|
<h2 data-ha-exclude="" id="fishhook-pride-keychains">fishhook pride keychains </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>card</li>
|
<li>leather</li>
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>highlight</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/pronoun-patches/">
|
|
||||||
|
|
||||||
<img src="/img/pronoun-patch.jpg" alt="Rows of the same design, a skull with a speech bubble announcing varied pronoun sets, repeat in multiple colors along a stretch of off-white fabric." loading="lazy" decoding="async" width="1000" height="562">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="pronoun-patches">pronoun patches</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>patch</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
|
|
||||||
@ -1521,17 +1512,37 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/slightly-weird-man-club/">
|
<a class="postlink" href="/not-a-drill/">
|
||||||
|
|
||||||
<img src="/img/slightly-weird-man-club-print.jpg" alt="A print that reads 'slightly weird man club' in a nonbinary flag colored gradient" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/not-a-drill-print.jpg" alt="A print in dark teal ink depicting a power drill with text in cursive below that reads 'ceci n'est pas un exercice' or 'this is not a drill'" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="slightly-weird-man-club">slightly weird man club</h2>
|
<h2 data-ha-exclude="" id="not-a-drill">not a drill </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>shirt</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/queer/">
|
||||||
|
|
||||||
|
<img src="/img/queer-print.jpg" alt="A print of the word queer in black ink. The letters are rounded with elongated oval negative space." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="queer">queer </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>card</li>
|
||||||
|
|
||||||
|
<li>sticker</li>
|
||||||
|
|
||||||
|
<li>pin</li>
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@ -1569,6 +1580,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/geese-trans-wrongs/` was built on 2026-03-25T20:00:18.506Z -->
|
<!-- This page `/geese-trans-wrongs/` was built on 2026-04-21T21:31:06.775Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1485,11 +1496,41 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/booby-congrats-on-the-top-surgery/">
|
<a class="postlink" href="/tiny-portraits/">
|
||||||
|
|
||||||
<img src="/img/booby-card.jpg" alt="A landscape-oriented white card with a two-color print of a blue-footed booby." loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/tiny-portrait-stamps.jpg" alt="A collage showing various small (around an inch) stamps that depict people or animals." loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="booby-congrats-on-the-top-surgery">booby (congrats on the top surgery)</h2>
|
<h2 data-ha-exclude="" id="tiny-portraits">tiny portraits </h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/luminescent/">
|
||||||
|
|
||||||
|
<img src="/img/luminescent-print.jpg" alt="A print of a tattooed woman in bright highlighter yellow underwear." class="blur" loading="lazy" decoding="async" width="900" height="1200">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="luminescent-mature">luminescent (mature)</h2>
|
||||||
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
|
<li>print</li>
|
||||||
|
|
||||||
|
<li>gender</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="post">
|
||||||
|
<a class="postlink" href="/coming-out/">
|
||||||
|
|
||||||
|
<img src="/img/coming-out-card-print.jpg" alt="A card and print in the same design - a chick and a broken eggshell, and a simple font reading 'congrats on coming out of your shell'" loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
|
<h2 data-ha-exclude="" id="coming-out">coming out </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
@ -1502,40 +1543,6 @@ export { HeadingAnchors }</script>
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/bottom-growth/">
|
|
||||||
|
|
||||||
<img src="/img/bottom-growth-prints.jpg" alt="4 copies of the same print in various color schemes, laid out in a 2x2 grid. The print shows testosterone-driven bottom growth of a clitoris. The color schemes are, clockwise from top right, brown on turquoise, red on cornsilk (muted yellow), violet on magenta, and mint green on lilac." loading="lazy" decoding="async" width="1000" height="1000">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="bottom-growth">bottom growth</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="post">
|
|
||||||
<a class="postlink" href="/geese-trans-wrongs/">
|
|
||||||
|
|
||||||
<img src="/img/trans-wrongs-geese-print.jpg" alt="Two Canada geese and their reflections in the water. One is calmly swimming away, while the over leans over towards them and HONKS! Both have speech bubbles; the calm goose says 'trans rights!' while the honking goose says 'trans wrongs!'" loading="lazy" decoding="async" width="1000" height="750">
|
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="geese-trans-wrongs">geese/trans wrongs</h2>
|
|
||||||
<ul class="postlist-tags">
|
|
||||||
|
|
||||||
<li>print</li>
|
|
||||||
|
|
||||||
<li>shirt</li>
|
|
||||||
|
|
||||||
<li>gender</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@ -1567,6 +1574,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/geese/` was built on 2026-03-25T20:00:18.506Z -->
|
<!-- This page `/geese/` was built on 2026-04-21T21:31:06.775Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -378,6 +378,11 @@ pre[class*=language-]::selection {
|
|||||||
grid-area: img;
|
grid-area: img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blur {
|
||||||
|
filter: blur(.75rem);
|
||||||
|
clip-path: inset(0 round 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
.tag-imgs {
|
.tag-imgs {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
@ -393,7 +398,7 @@ pre[class*=language-]::selection {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 3 / 2;
|
aspect-ratio: 3 / 2;
|
||||||
background-color: var(--color-bg-alt);
|
background-color: var(--color-bg-alt);
|
||||||
border-radius: calc(1rem);
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taglink:focus-visible .missing-image {
|
.taglink:focus-visible .missing-image {
|
||||||
@ -640,6 +645,12 @@ ul, ol, dl, li {
|
|||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
ul, ol, dl {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
line-height: 1.2 5;
|
line-height: 1.2 5;
|
||||||
margin-top: .65rem;
|
margin-top: .65rem;
|
||||||
@ -1657,16 +1668,16 @@ export { HeadingAnchors }</script>
|
|||||||
<ol id="postlist">
|
<ol id="postlist">
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/slightly-weird-man-club/">
|
<a class="postlink" href="/booby-congrats-on-the-top-surgery/">
|
||||||
|
|
||||||
<img src="/img/slightly-weird-man-club-print.jpg" alt="A print that reads 'slightly weird man club' in a nonbinary flag colored gradient" loading="lazy" decoding="async" width="1000" height="750">
|
<img src="/img/booby-card.jpg" alt="A landscape-oriented white card with a two-color print of a blue-footed booby." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="slightly-weird-man-club">slightly weird man club</h2>
|
<h2 data-ha-exclude="" id="booby-congrats-on-the-top-surgery">booby (congrats on the top surgery) </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>print</li>
|
<li>print</li>
|
||||||
|
|
||||||
<li>shirt</li>
|
<li>card</li>
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
|
|
||||||
@ -1675,25 +1686,27 @@ export { HeadingAnchors }</script>
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/fedizinefest-2025/">
|
<a class="postlink" href="/on-the-shoulders-of-giants/">
|
||||||
|
|
||||||
<img src="/img/fedizinefest-2025.png" alt="A logo in purple, yellow, blue, and green. A piece of paper folded into 8 sections reads FEDI ZINE; it resembles the classic folding pattern of a simple 8-page zine made from printer paper. Next to it, a fully folded zine reads fest 2025." loading="lazy" decoding="async" width="729" height="799">
|
<img src="/img/on-the-shoulders.jpg" alt="ok so. five image collage showing the front, 3 inner spreads, and back of a riso-printed zine in green and light blue. it's called 'on the shoulders of giants' and it's about a knitting technique I learned from Stephen west and how I built on that technique. it talks about joining two adjacent panels without seaming, instead knitting the second panel onto the selvedge of the first. then it uses that technique to approach two panels knit with significantly different weights of yarn" loading="lazy" decoding="async" width="1000" height="1000">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="fedizinefest-2025">fediZineFest 2025</h2>
|
<h2 data-ha-exclude="" id="on-the-shoulders-of-giants">on the shoulders of giants </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>zine</li>
|
<li>zine</li>
|
||||||
|
|
||||||
|
<li>knit</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a class="postlink" href="/queer-book-list/">
|
<a class="postlink" href="/give-to-trans-orgs-and-people/">
|
||||||
|
|
||||||
<img src="/img/rainbow-books.jpg" alt="A bookshelf with a variety of books on LGBTQ+ themes, arranged roughly in rainbow order" loading="lazy" decoding="async" width="1000" height="562">
|
<img src="/img/bouquet.jpg" alt="Image unrelated to post. A close up on a flower bouquet in shades of purple, pink, and white. Centered is a large, almost soft-looking pink flower that is still partially closed up." loading="lazy" decoding="async" width="1000" height="750">
|
||||||
|
|
||||||
<h2 data-ha-exclude="" id="queer-book-list">queer book list</h2>
|
<h2 data-ha-exclude="" id="give-to-trans-orgs-and-people">give to trans orgs and people </h2>
|
||||||
<ul class="postlist-tags">
|
<ul class="postlist-tags">
|
||||||
|
|
||||||
<li>gender</li>
|
<li>gender</li>
|
||||||
@ -1733,6 +1746,6 @@ export { HeadingAnchors }</script>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<!-- This page `/gender-as-a-proxy-variable/` was built on 2026-03-25T20:00:18.485Z -->
|
<!-- This page `/gender-as-a-proxy-variable/` was built on 2026-04-21T21:31:06.765Z -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user