summaryrefslogtreecommitdiff
path: root/notes
diff options
context:
space:
mode:
authort <t@tjp.lol>2026-07-11 14:06:25 -0600
committert <t@tjp.lol>2026-07-11 19:59:46 -0600
commit6636567f9c4395e830f280e1cd0008a726c04286 (patch)
treeb844e1201de82f54f6b19065bae8e4b783f37642 /notes
parent48352c770a932bd628cc5eb22ea3b899b041c485 (diff)
Refresh site structure and copy
Simplify navigation and section copy, update feed presentation, and remove the obsolete plain-HTML note.
Diffstat (limited to 'notes')
-rw-r--r--notes/_plain-html.md28
-rw-r--r--notes/index.html.tmpl12
2 files changed, 8 insertions, 32 deletions
diff --git a/notes/_plain-html.md b/notes/_plain-html.md
deleted file mode 100644
index 6d6e078..0000000
--- a/notes/_plain-html.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-description: A note on writing plain, durable HTML.
-planted: 2024-08-11
-tended: 2026-05-30
----
-# The case for plain HTML
-
-*A note, not an essay — expect it to change. This page shows how a wiki note reads: internal wiki links render as underlined-dotted links, and a backlinks panel sits at the bottom.*
-
-A hand-written HTML page is the most durable document format I know of that still looks like a document. It has no runtime, no dependencies, and no version that can go out of date. A file I wrote in 2004 opens today, pixel-for-pixel, in a browser that didn't exist then.
-
-This connects to [Gemtext & the small web](index.html) — both are bets that *constraint outlives capability*. See also [How I take notes](index.html) for why I keep the source in plain text.
-
-## Things I no longer do
-
-- Reach for a framework before there's a second page.
-- Add a build step to save five keystrokes.
-- Load a web font when the reader already owns a good one.
-
-## The test
-
-Turn JavaScript off. If the page is worse, I've added fragility I have to maintain forever. If it's identical, I'm done. This whole site passes that test — see the [colophon](../about/index.html).
-
-## Linked from
-
-- [Gemtext & the small web](index.html)
-- [Home-lab & self-hosting](index.html)
-- [Moving my weblog off Gemini (without leaving it)](../weblog/moving-off-gemini.html)
diff --git a/notes/index.html.tmpl b/notes/index.html.tmpl
index 468a466..848a087 100644
--- a/notes/index.html.tmpl
+++ b/notes/index.html.tmpl
@@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Notes — tjp.lol</title>
-<meta name="description" content="A public cut of my Obsidian notes — a small digital garden.">
+<meta name="description" content="A public cut of my synced notes — a small digital garden.">
<link rel="stylesheet" href="../style.css">
</head>
<body>
@@ -13,19 +13,23 @@
{{template "header" .}}
<main>
<section class="intro">
- <p>This is a digital garden &mdash; a public slice of the notes I keep in Obsidian. Unlike the <a href="../weblog/index.html">weblog</a>, these aren't essays. They're living pages: some are a paragraph, some are years old, most link to each other. Start anywhere and follow the threads.</p>
+ <p>This is a digital garden; a public slice of the persistent notes I keep synced across my devices.</p>
</section>
<section>
<h2 class="sec">start here</h2>
+ <ul>
+ <li><a href="/notes/sync/recipes/">My Recipes</a></li>
+ <li><a href="/notes/sync/recipes/cocktails/">Cocktail Recipes</a></li>
+ </ul>
</section>
- <section>
+ <!--<section>
<h2 class="sec">all notes</h2>
{{$notes := sortPages (index .Pages "notes") "mod_time"}}{{with $notes}}<div class="note-index">
{{range .}}<a href="{{rel "notes/index.html" .OutputPath}}">{{.Title}}</a>{{end}}
</div>{{end}}
- </section>
+ </section>-->
</main>
{{template "footer" .}}