Compare commits

..

52 Commits

Author SHA1 Message Date
2e8a11f2d2 Star Citizen 4.0 guide draft updates. 2024-10-15 18:01:46 +00:00
bf4c08d256 Add image for Animal Well review. 2024-10-15 15:53:55 +00:00
b564e7249a Massive reorganization of posts. 2024-10-15 15:42:42 +00:00
1ee853844c New post: Animal Well 2024-10-15 13:58:42 +00:00
f5fe192c3e Add bug report image for Satisfactory. 2024-09-14 17:15:09 +00:00
74d6d928d0 Small wording change. 2024-07-04 01:09:33 +00:00
4dcda3ffab Add SC version to the guide post. 2024-07-03 23:51:09 +00:00
725fda2596 Use yaml instead of toml. Thank the gods this is finally an option. 2024-07-03 21:08:19 +00:00
f49428dfea Use Hugo modules to import theme, also modernize everything. 2024-07-03 20:58:00 +00:00
631f851e8b Add new draft post for SC 3.24 guide. 2024-07-03 19:56:54 +00:00
613d856b2f Add menu links to most commonly referenced pages. 2024-07-03 19:47:47 +00:00
919a0cf7ed Add a feature to auto-detect newer iterations of a post. 2024-07-03 16:00:33 +00:00
0277890db3 Update site to use the latest version of our theme. This requires stuffing our local dev into a docker container because the latest hugo breaks the theme. 2024-07-03 16:00:18 +00:00
749796b735 More OW guide cleanup. 2024-04-17 17:32:01 +00:00
ac977b44e7 Reword some things in the OW guide. 2024-04-17 17:29:42 +00:00
352cb8a643 Resize crab. 2024-03-11 17:33:13 +00:00
9d9fb10863 Add crab avatar. 2024-03-11 17:28:10 +00:00
98173a31b0 One more little reference. 2024-02-26 21:20:36 +00:00
26a25d97c1 More wording updates. 2024-02-26 20:58:13 +00:00
b9954ac747 Wording update. 2024-02-26 20:54:37 +00:00
316f0d6fa1 Add some backstory to the story. 2023-12-21 22:44:14 +00:00
95eb7f90c6 Add new SC story. 2023-12-02 23:41:44 +00:00
20dc17697a Update about, clean up some tags. 2023-11-30 17:02:39 +00:00
3dcec15b8f Remove the bit that doesn't work. 2023-11-28 16:26:11 +00:00
73068bde43 One more fix. 2023-11-28 08:11:53 +00:00
addab8d6ac Change wording. 2023-11-28 07:24:53 +00:00
ebcfc46966 Add future considerations for each ship. 2023-11-28 07:21:25 +00:00
2b1d267cd3 Style changes. 2023-11-28 07:05:11 +00:00
eda9d9de8e Further discussion. 2023-11-28 03:42:59 +00:00
f581ad66c0 Update opinions. 2023-11-28 03:09:52 +00:00
615962db5d Add Star Citizen starter guide post. 2023-11-27 22:35:54 +00:00
ab80c6c3d3 Minor cleanup. 2023-11-27 22:34:43 +00:00
3a2c3fb9c0 More tweaks to the endlessly tweaked Outer Wilds post. 2023-11-15 03:34:01 +00:00
274285f48a Add spoiler tag shortcode. 2023-11-15 03:33:50 +00:00
24a51d18b2 Oops, misgendered in the footnote too. 2023-11-11 00:56:20 +00:00
bde3d345e3 Un-misgender the only character who gets a gender marker. 2023-11-11 00:54:01 +00:00
a4789c77be Remove placeholder images 2023-11-10 22:00:10 +00:00
58e2a9ec26 Add Star Citizen post. 2023-11-10 21:59:25 +00:00
647f80640c Further improve Outer Wilds post, add a cute little image. 2023-11-07 02:17:18 +00:00
33a57f0373 More site code improvements. Better imgproc, better caption CSS, make post archetype assume we'll have images. 2023-11-07 02:16:54 +00:00
3c80fa1214 More layout tweaking. 2023-11-06 22:27:59 +00:00
4921fb8249 Clean up and apply custom styles properly. 2023-11-06 22:22:09 +00:00
ec39d7ba2a Even more tips. 2023-10-30 00:14:25 +00:00
c96a8885b8 One more touch up. 2023-10-27 19:25:08 +00:00
4e7414b1d8 Even more text updates. 2023-10-27 19:23:42 +00:00
c603229d37 More text changes. 2023-10-26 20:27:53 +00:00
12ca0aade2 Wording update. 2023-10-26 19:51:17 +00:00
208fd931cf Rework post. 2023-10-26 19:44:36 +00:00
cbb26cf570 Fix baseurl 2023-10-26 19:32:58 +00:00
db37c3b374 Clean up some cruft. 2023-10-26 19:29:26 +00:00
6cc75e9778 Reduce avatar size so it fits constraints. 2023-09-14 18:31:04 +00:00
1361a666ef Add some personal files for general use. 2023-09-14 18:16:39 +00:00
170 changed files with 1133 additions and 168 deletions

4
.gitmodules vendored
View File

@ -1,4 +0,0 @@
[submodule "themes/pickles"]
path = themes/hugo_theme_pickles
url = https://github.com/mismith0227/hugo_theme_pickles
branch = custom

View File

@ -1,4 +1,4 @@
FROM klakegg/hugo as build
FROM hugomods/hugo:0.128.1 as build
WORKDIR /src
COPY . /src/

View File

@ -1,8 +1,5 @@
---
title: "{{ replace (replace .Name "draft-" "") "-" " " | title }}"
date: {{ dateFormat .Site.Params.dateformat .Date }}
title: "{{ replace .Name "-" " " | title }}"
date: {{ dateFormat (.Site.Params.dateformat) .Date }}
draft: true
tags:
- tag1
---
<!--more-->

View File

10
archetypes/posts/index.md Normal file
View File

@ -0,0 +1,10 @@
---
title: "{{ replace (replace .Name "draft-" "") "-" " " | title }}"
date: {{ dateFormat (.Site.Params.dateformat) .Date }}
draft: true
tags:
- tag1
---
<!--more-->

View File

@ -3,11 +3,15 @@ title: About
---
## 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 Ive 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
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>.

View File

@ -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-->

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

Some files were not shown because too many files have changed in this diff Show More