diff --git a/assets/css/main.css b/assets/css/main.css
index 552bcc9..c5338e7 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -9,7 +9,7 @@
*
* I also don't use any classes except for image presentation. (e.g. to
* specify that an image should have pixelated rendering or be inverted
- * in dark mode).
+ * in dark mode). One exception: a class for narrow width body text.
* My HTML contains microformats2 classnames for IndieWeb parsers, but I
* don't actually use those for styling.
*
@@ -59,7 +59,7 @@ html {
* viewport. This isn't for large blocks of text yet, so we don't have
* to go by SC 1.4.8.
* 45em = lowest acceptable width for titles, nav, footers, etc */
- max-width: 45em;
+ max-width: 42em;
/* Phone cases can cover the edges. Swipe-from-edge navigations
* should not conflict with the page elements. Focus outlines for
@@ -77,7 +77,9 @@ html {
/* 45em is too wide for long body text.
* Typically meets SC 1.4.8, plus or minus a few characters. */
- div[itemprop="articleBody"] {
+ div[itemprop="articleBody"],
+ li[itemprop="dataFeedElement"],
+ .narrow {
margin: auto;
max-width: 35em;
}
diff --git a/content/_index.md b/content/_index.md
index 4af687d..8a781f1 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -11,24 +11,14 @@ sitemap:
- Priority: 0.9
stype: "WebSite"
---
+About me
+--------
+
-Seirdy’s Home
-=============
-
I'm
{{% indieweb-icon %}} Rohan Kumar (He/Him). I'm also known by my more casual online handle
Seirdy (It/Its). Mixing them up is fine.
-About this site
----------------
-
-In addition to its [canonical url](https://seirdy.one), a "rough draft" of this website also exists on my [Tildeverse page](https://envs.net/~seirdy/ "{itemprop='sameAs' class='u-url' rel='me'}"). This site's content also appears on my [Gemini capsule](gemini://seirdy.one "{itemprop='sameAs' class='u-syndication' rel='me'}").
-
-This is a basic [IndieWeb site](https://indieweb.org/) that contains articles, notes, and bookmarks. You can subscribe to a combined feed of my articles and notes using [the site's Atom feed](./atom.xml), or you can subscribe to sections independently. If your feed reader has problems displaying entry contents (I know Outlook does), I also have a legacy [RSS feed for the whole site](./index.xml) and for each section.
-
-About me
---------
-
The Director's Cut of my bio is at my [About page](./about/ "{itemprop='subjectOf'}").
@@ -41,8 +31,7 @@ My perspective on software freedom is a bit different from the FSF's; I've been
Git repos: [Sourcehut](https://sr.ht/~seirdy "{rel='me'}"), [GitHub](https://github.com/Seirdy "{rel='me'}"), [Codeberg](https://codeberg.org/Seirdy "{rel='me'}"), and [GitLab](https://gitlab.com/Seirdy "{rel='me'}")
-Contact
--------
+### Contact
Contact me via [email](mailto:seirdy@seirdy.one "{class='u-email' itemprop='email' rel='me'}") ([PGP](./publickey.asc "{rel='pgpkey authn' type='application/pgp-keys' class='u-key'}")), or on the Fediverse where I'm [@Seirdy@pleroma.envs.net](https://pleroma.envs.net/seirdy "{rel='me' itemprop='sameAs' class='u-url'}").
@@ -50,3 +39,31 @@ Chat with me: I'm on several IRC networks. Alternatively, I'm [@seirdy:se
+About this site
+---------------
+
+This is a basic [IndieWeb site](https://indieweb.org/).
+
+In addition to its [canonical url](https://seirdy.one), a "rough draft" of this website also exists on my [Tildeverse page](https://envs.net/~seirdy/). This site's content also appears on my [Gemini capsule](gemini://seirdy.one).
+
+For more information about the site, [see the "meta" section](./meta/).
+
+
+Feeds
+
+I offer some feeds in Atom format:
+
+- [Combined feed](./atom.xml)
+- [Articles feed](./posts/atom.xml)
+- [Notes feed](./notes/atom.xml)
+
+If you experience issues with Atom feeds, try an RSS feed:
+
+- [Legacy combined RSS feed](./index.xml)
+- [Legacy articles feed](./posts/index.xml)
+- [Legacy notes feed](./notes/index.xml)
+
+I recommend using the Atom feeds.
+
+
+
diff --git a/content/bookmarks.md b/content/bookmarks.md
index 9994615..e0acb3d 100644
--- a/content/bookmarks.md
+++ b/content/bookmarks.md
@@ -7,5 +7,7 @@ description: "Links from around the web, curated and annotated by Rohan Kumar."
sitemap:
- ChangeFreq: daily
---
-Here's a filtered selection of my personal bookmarks. Using [a shell script](https://git.sr.ht/~seirdy/dotfiles/tree/master/Executables/shell-scripts/bin/buku-upload), I regularly export specially-tagged entries from my [buku](https://github.com/jarun/buku) database to [a JSON file](https://seirdy.one/data/bookmarks.json). During site rebuilds, Hugo automatically pulls content from that file to build this page. This approach allows me to use an interactive interface to build my bookmarks database without needing a dynamic site.
+Here's a filtered selection of my personal bookmarks.
+
+[A shell script](https://git.sr.ht/~seirdy/dotfiles/tree/master/Executables/shell-scripts/bin/buku-upload) exports [buku](https://github.com/jarun/buku) entries to [a JSON file](https://seirdy.one/data/bookmarks.json) that populates this page. This approach lets me use an interactive interface to build my bookmarks database without needing a dynamic site.
diff --git a/layouts/index.html b/layouts/index.html
index f3a4bcc..4c00380 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,7 +1,12 @@
{{ define "main" -}}
+Seirdy’s Home
+
+
+
{{ partial "processed-content.html" . }}
{{ partial "posts.html" . }}
{{ partial "webrings.html" . }}
+
{{ end }}