Compare commits
54 Commits
446b49e0b0
...
main
Author | SHA1 | Date | |
---|---|---|---|
2e8a11f2d2 | |||
bf4c08d256 | |||
b564e7249a | |||
1ee853844c | |||
f5fe192c3e | |||
74d6d928d0 | |||
4dcda3ffab | |||
725fda2596 | |||
f49428dfea | |||
631f851e8b | |||
613d856b2f | |||
919a0cf7ed | |||
0277890db3 | |||
749796b735 | |||
ac977b44e7 | |||
352cb8a643 | |||
9d9fb10863 | |||
98173a31b0 | |||
26a25d97c1 | |||
b9954ac747 | |||
316f0d6fa1 | |||
95eb7f90c6 | |||
20dc17697a | |||
3dcec15b8f | |||
73068bde43 | |||
addab8d6ac | |||
ebcfc46966 | |||
2b1d267cd3 | |||
eda9d9de8e | |||
f581ad66c0 | |||
615962db5d | |||
ab80c6c3d3 | |||
3a2c3fb9c0 | |||
274285f48a | |||
24a51d18b2 | |||
bde3d345e3 | |||
a4789c77be | |||
58e2a9ec26 | |||
647f80640c | |||
33a57f0373 | |||
3c80fa1214 | |||
4921fb8249 | |||
ec39d7ba2a | |||
c96a8885b8 | |||
4e7414b1d8 | |||
c603229d37 | |||
12ca0aade2 | |||
208fd931cf | |||
cbb26cf570 | |||
db37c3b374 | |||
6cc75e9778 | |||
1361a666ef | |||
fc50209e99 | |||
33bafa0218 |
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -1,4 +0,0 @@
|
|||||||
[submodule "themes/pickles"]
|
|
||||||
path = themes/hugo_theme_pickles
|
|
||||||
url = https://github.com/mismith0227/hugo_theme_pickles
|
|
||||||
branch = custom
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM klakegg/hugo as build
|
FROM hugomods/hugo:0.128.1 as build
|
||||||
|
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY . /src/
|
COPY . /src/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "{{ .Name | replaceRE "^\d{4}-\d{2}-\d{2}-(.*)$" "\1" | replace "-" " " | title }}"
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
date: {{ .Date }}
|
date: {{ dateFormat (.Site.Params.dateformat) .Date }}
|
||||||
|
draft: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
0
archetypes/posts/images/.gitkeep
Normal file
0
archetypes/posts/images/.gitkeep
Normal file
10
archetypes/posts/index.md
Normal file
10
archetypes/posts/index.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace (replace .Name "draft-" "") "-" " " | title }}"
|
||||||
|
date: {{ dateFormat (.Site.Params.dateformat) .Date }}
|
||||||
|
draft: true
|
||||||
|
tags:
|
||||||
|
- tag1
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
<!--more-->
|
80
config.toml
80
config.toml
@ -1,80 +0,0 @@
|
|||||||
baseurl = "https://annabunches.net/"
|
|
||||||
languageCode = "en-us"
|
|
||||||
theme = "hugo_theme_pickles"
|
|
||||||
Title = "Anna and the Bunches"
|
|
||||||
copyright = "© Anna Wiggins, 2006-2023"
|
|
||||||
|
|
||||||
# Google Analytics API key.
|
|
||||||
googleAnalytics = "G-QFK0K7MGCJ"
|
|
||||||
|
|
||||||
[params]
|
|
||||||
paginate = 10
|
|
||||||
customCSS = ["/css/custom.css"]
|
|
||||||
dateformat = "2006-02-01"
|
|
||||||
# Social accounts. Link to these accounts are displayed in the header and
|
|
||||||
# footer
|
|
||||||
# twitter = "annabunches"
|
|
||||||
# facebook = "Your Facebook username"
|
|
||||||
# instagram = "Your Instagram username"
|
|
||||||
# github = "Your GitHub username"
|
|
||||||
# gitlab = "Your GitLab username"
|
|
||||||
# npm = "Your npm username"
|
|
||||||
# codepen = "Your CodePen username"
|
|
||||||
# dribbble = "Your Dribbble username"
|
|
||||||
# fivehundredpx = "Your 500px username" # 500px
|
|
||||||
# flickr = "Your Flickr username"
|
|
||||||
# pinterest = "Your Pinterest username"
|
|
||||||
# tumblr = "Your Tumblr username"
|
|
||||||
# vimeo = "Your Vimeo username"
|
|
||||||
# youtube = "Your YouTube username"
|
|
||||||
# linkedin = "Your LinkedIn username"
|
|
||||||
# medium = "Your Medium username"
|
|
||||||
# Disqus shortname
|
|
||||||
# disqus = ""
|
|
||||||
# author = "Your Name"
|
|
||||||
# authorwebsite = "example.com"
|
|
||||||
# avatar = "/path/to/avatar"
|
|
||||||
# contact = "annabunches@gmail.com"
|
|
||||||
# bio = ""
|
|
||||||
# Short subtitle/tagline. This is displayed in the header.
|
|
||||||
subtitle = "It's words!"
|
|
||||||
# Logo image. This is displayed ogp image.
|
|
||||||
# logo = "/path/to/logo"
|
|
||||||
# favicon = "/path/to/favicon"
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
name = "Blog"
|
|
||||||
url = "/"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
name = "About"
|
|
||||||
url = "/about"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
name = "Tags"
|
|
||||||
url = "/tags"
|
|
||||||
weight = 4
|
|
||||||
|
|
||||||
[related]
|
|
||||||
# Only include matches with rank >= threshold. This is a normalized rank between 0 and 100.
|
|
||||||
threshold = 80
|
|
||||||
|
|
||||||
# To get stable "See also" sections we, by default, exclude newer related pages.
|
|
||||||
includeNewer = false
|
|
||||||
|
|
||||||
# Will lower case keywords in both queries and in the indexes.
|
|
||||||
toLower = false
|
|
||||||
|
|
||||||
[[related.indices]]
|
|
||||||
name = "keywords"
|
|
||||||
weight = 150
|
|
||||||
[[related.indices]]
|
|
||||||
name = "tags"
|
|
||||||
weight = 100
|
|
||||||
|
|
||||||
[markup]
|
|
||||||
defaultMarkdownHandler = "goldmark"
|
|
||||||
[markup.goldmark.renderer]
|
|
||||||
unsafe = true
|
|
@ -3,11 +3,15 @@ title: About
|
|||||||
---
|
---
|
||||||
## About the Site
|
## About the Site
|
||||||
|
|
||||||
Anna and the Bunches is a self-indulgent blog about technology, with occasional forays into games and media.
|
Anna and the Bunches is a self-indulgent blog about my special interests. Since these range all over the map, you probably won't like every post on here. Use the tags to find what you're into.
|
||||||
|
|
||||||
I like to tell myself it is intelligently written, witty, and deeply interesting, but I’ve been known to lie. Caveat lector.
|
Some things you might find on here include posts about programming, video gaming, speculative fiction, linguistics, and electronics.
|
||||||
|
|
||||||
|
It also contains posts dating back to 2006. I'm pretty sure those were originally posted on Livejournal. I have left them here out of (as far as I can tell) a morbid desire to humiliate myself. Opinions and interests in the older posts don't necessarily reflect my current life. (At some point I may strip the tagging from older posts, or silo them to their own section.)
|
||||||
|
|
||||||
|
|
||||||
## About the Author
|
## About the Author
|
||||||
|
|
||||||
Everything here is written by me, Anna, a feminist witch in my 30s who spends my days writing software. My interests include, but are not limited to: programming, video gaming, table-top roleplaying, speculative fiction, linguistics, strategy board games, hiking, and the simultaneous application of contradictory, overlapping worldviews.
|
Everything here is written by me, Anna, a trans, autistic, leftist Heathen in my 30s who spends my days writing software.
|
||||||
|
|
||||||
|
You can find my personal projects, including the code used to build this site, at <https://git.annabunches.net>.
|
||||||
|
@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
title: "Anna Reviews: Jellyfish Cant Swim in the Night"
|
||||||
|
date: 2024-07-03
|
||||||
|
draft: true
|
||||||
|
tags:
|
||||||
|
- anna reviews
|
||||||
|
- anime
|
||||||
|
---
|
||||||
|
Welcome to Anna Reviews, a series where I review whatever bit of human creativity strikes my fancy. Expect a lot of anime and video games, with the occasional novel, album, or film tossed in for good measure.
|
||||||
|
|
||||||
|
For our inaugural post, I'd like to talk about the 2024 original anime *Jellyfish Can't Swim in the Night*. It's one of this season's entries into the catalog of "band anime", a subgenre about the power of friendship and music that has really taken off in recent years.
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user