diff --git a/content/index.css b/content/index.css
index 4f7e5f5..cada1c1 100644
--- a/content/index.css
+++ b/content/index.css
@@ -48,6 +48,7 @@ p:last-child {
}
p {
margin-top: 0;
+ margin-bottom: 0;
line-height: 1.5;
}
@@ -198,7 +199,7 @@ a[href].header-anchor:focus,
h1 {
padding-bottom: 20px;
border-bottom: 12px double var(--xkcd-magenta);
-}
+}
article {
overflow: auto;
diff --git a/content/p/gameboymode.md b/content/p/gameboymode.md
deleted file mode 100644
index 2373408..0000000
--- a/content/p/gameboymode.md
+++ /dev/null
@@ -1,29 +0,0 @@
----
-layout: base.njk
-title: gameboymode
----
-# {{ title }}
-
-did you know that the 8bitdo Zero Two is just the right size to use as a gameboy? this thing is tiny but you can strap it to the front of your phone with two rubber bands and hey you've got a gameboy.
-
-except instead of two rubber bands im using this 3d printed jig thanks to (insert creator name) on thingiverse! wow! its held on by a rubber band.
-
-for the software, i am using retroarch for android. i changed the menu theme to 'rgui' which is designed for small screens, and conveniently defaults to taking up just the top half of the screen, so it works perfect for this setup.
-
-for added immersion i tried all the shaders and the best one is (insert name here, I think it was dot-matrix-dmg).
-
-games this thing runs: i mean, _all of them_, it's an emulator. but the ones I've enjoyed the most are
-
-- Tetris (gb)
-- Pokemon Pinball (gb)
-- Pokemon Puzzle Challenge (gbc)
-- Game and Watch Gallery 4: Modern Chef (gba)
-- Pokemon: Too Many Types (gba)
-- WarioWare: Mega Microgame$ (gba)
-
-## to do
-
-- check name of shader
-- take pictures
-- upload pictures
-- add links: 8bitdo, retroarch, thingiverse
diff --git a/content/p/gamepad/gameboymode-1.jpg b/content/p/gamepad/gameboymode-1.jpg
new file mode 100644
index 0000000..499ebca
Binary files /dev/null and b/content/p/gamepad/gameboymode-1.jpg differ
diff --git a/content/p/gamepad/gameboymode-2.jpg b/content/p/gamepad/gameboymode-2.jpg
new file mode 100644
index 0000000..209b169
Binary files /dev/null and b/content/p/gamepad/gameboymode-2.jpg differ
diff --git a/content/p/gamepad/gameboymode-3.jpg b/content/p/gamepad/gameboymode-3.jpg
new file mode 100644
index 0000000..8d76a31
Binary files /dev/null and b/content/p/gamepad/gameboymode-3.jpg differ
diff --git a/content/p/gamepad/gameboymode-4.jpg b/content/p/gamepad/gameboymode-4.jpg
new file mode 100644
index 0000000..e79e453
Binary files /dev/null and b/content/p/gamepad/gameboymode-4.jpg differ
diff --git a/content/p/gamepad/index.md b/content/p/gamepad/index.md
new file mode 100644
index 0000000..8206dd5
--- /dev/null
+++ b/content/p/gamepad/index.md
@@ -0,0 +1,76 @@
+---
+layout: base.njk
+title: gamepad
+description: controllers and other-type gizmos for playing videos games
+permalink: /p/gamepad/
+---
+{% css %}
+img {
+ max-height: 400px;
+ padding: 10px 20px;
+ display: block;
+ margin: 0 auto;
+}
+{% endcss %}
+
+# {{ title }}
+
+*{{ description }}*
+
+## gameboymode
+
+*get it, like boymoding? you get it.*
+
+did you know that the 8bitdo Zero Two is just the right size to use as a gameboy? this thing is tiny but you can strap it to the front of your phone with two rubber bands and hey you've got a gameboy.
+
+
+
+except instead of two rubber bands im using [this 3d printed jig](https://www.thingiverse.com/thing:5998094) thanks to WadaKatsu on thingiverse! wow! its held on by a rubber band.
+
+
+
+for the software, i am using retroarch for android. i changed the menu theme to 'rgui' which is designed for small screens, and conveniently defaults to taking up just the top half of the screen, so it works perfect for this setup.
+
+
+
+for added immersion i tried a bunch of the shaders that come with retroarch and the best one is *handheld/gb-dot-matrix-DMG*, it's a beautiful replica of the pea-soup green gameboy I remember from my childhood.
+
+
+
+games this thing runs: i mean, *all of them*, it's an emulator. but the ones I've enjoyed the most are
+
+- Tetris (gb)
+- Pokemon Pinball (gb)
+- Pokemon Puzzle Challenge (gbc)
+- Game and Watch Gallery 4: Modern Chef (gba)
+- Pokemon: Too Many Types (gba)
+- WarioWare: Mega Microgame$ (gba)
+
+## to be written
+
+{% css %}
+#to-be-written + ul > li {
+ margin-bottom: 1em;
+}
+{% endcss %}
+
+- purple dualsense
+ - aka "klay royal"
+ - altho im considering renaming it
+
+- black gold dualshock
+ - aka "jehauri"
+
+- thoughts on dualsense edge
+ - it's overpriced
+
+- weird joycon issues
+ - man i hope android adds support for the directional keys on the left joycon, it's only been broken [since 2019](https://xdaforums.com/t/potential-fixes-for-the-joy-con-issues.3952972/)
+ - needs a range extender to work with steam deck
+ - seriously the bluetooth is terrible i hope they fix this on the switch 2
+ - not that i actually want a switch 2 but I *do* want better joycons
+
+- the steam deck
+ - its awesome
+ - valve is unfortunately less awesome these days
+ - but damn they sure did make a console thats mod-friendly and they get props for that
diff --git a/eleventy.config.js b/eleventy.config.js
index 712fdd0..6a70823 100644
--- a/eleventy.config.js
+++ b/eleventy.config.js
@@ -23,6 +23,7 @@ export default function(eleventyConfig) {
});
eleventyConfig.addPassthroughCopy("content/**/*.png");
+ eleventyConfig.addPassthroughCopy("content/**/*.jpg");
eleventyConfig.addPassthroughCopy("content/**/*.webp");
eleventyConfig.addPassthroughCopy('content/**/*.css');
eleventyConfig.addPassthroughCopy({ "static": "/" });