summaryrefslogtreecommitdiff
path: root/about
diff options
context:
space:
mode:
authort <t@tjp.lol>2026-07-13 11:35:19 -0600
committert <t@tjp.lol>2026-07-13 12:50:44 -0600
commit130fdf3445b267c972fe051d139a88a201ac9888 (patch)
treeea2a2a14ab12f7e38a788eeda4f5c62fdb3522bd /about
parent7c49c8d7be14054f2a679fdd83f23de90870cf1c (diff)
move static content index pages (projects, notes, about) into markdown
Diffstat (limited to 'about')
-rw-r--r--about/index.html.tmpl49
-rw-r--r--about/index.md28
2 files changed, 28 insertions, 49 deletions
diff --git a/about/index.html.tmpl b/about/index.html.tmpl
deleted file mode 100644
index e2a5c1b..0000000
--- a/about/index.html.tmpl
+++ /dev/null
@@ -1,49 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-<meta charset="utf-8">
-<meta name="viewport" content="width=device-width, initial-scale=1">
-<title>About &amp; colophon — tjp.lol</title>
-<meta name="description" content="About tjp and how this site is built.">
-<link rel="stylesheet" href="../style.css">
-</head>
-<body>
-<div class="wrap">
-
-{{template "header" .}}
- <main>
- <article class="post">
- <div class="note-body">
- <p>I'm Travis, a software engineer living in Salt Lake City, Utah. I write mostly code, supervise coding AIs, generally spend too long in the terminal, and care about software that's small, legible, and built to last.</p>
- <p>This site is where I keep my <a href="{{rel .OutputPath "/weblog/"}}">writing</a>. If you want to reach me, <a href="mailto:t@tjp.lol">t@tjp.lol</a> is the best way.</p>
- </div>
-
- <section>
- <h2>elsewhere</h2>
- <ul class="links">
- <li><span class="k">email</span><a href="mailto:t@tjp.lol">t@tjp.lol</a></li>
- <li><span class="k">code</span><a href="https://code.tjp.lol/">self-hosted cgit</a></li>
- <li><span class="k">fedi</span><a href="https://tilde.zone/@tjpcc" rel="me">@tjpcc@tilde.zone</a></li>
- <li><span class="k">gemini</span><a href="gemini://tjp.lol/">gemini://tjp.lol/</a></li>
- </ul>
- </section>
-
- <div class="backlinks">
- <h2>Colophon</h2>
- <div class="note-body">
- <p>This site is generated from Markdown and Go templates by <a href="https://code.tjp.lol/weft.git">Weft</a>, with a single <a href="../style.css">stylesheet</a>.</p>
- <ul>
- <li><strong>Type:</strong> system UI font for prose, system monospace for headings and code. No web fonts or network requests for type.</li>
- <li><strong>Colour:</strong> light and dark themes via <code>prefers-color-scheme</code>. It follows your OS setting in CSS.</li>
- <li><strong>Weblog:</strong> published from Markdown as static HTML.</li>
- <li><strong>Notes:</strong> authored in Obsidian and neovim, synced across my devices with Syncthing, published <a href="{{rel .OutputPath "/notes/"}}">here</a> as static pages.</li>
- <li><strong>Build:</strong> Weft recursively renders Markdown and Go templates. AI may assist with coding and batch refactoring, but never with any published post content.</li>
- <li><strong>Hosting:</strong> static files self-hosted on a VPS.</li>
- <li><strong>Licence:</strong> content is <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> unless a page says otherwise. Take it, remix it, just credit me.</li>
- </ul>
- </div>
- </div>
- </article>
- </main>
-
-{{template "footer" .}}
diff --git a/about/index.md b/about/index.md
new file mode 100644
index 0000000..b7efc71
--- /dev/null
+++ b/about/index.md
@@ -0,0 +1,28 @@
+---
+title: "About & colophon"
+---
+
+I'm Travis, a software engineer living in Salt Lake City, Utah. I write mostly code, supervise coding AIs, generally spend too long in the terminal, and care about software that's small, legible, and built to last.
+
+This site is where I keep my [writing](/weblog/). If you want to reach me, <t@tjp.lol> is the best way.
+
+## elsewhere
+
+- **email** <t@tjp.lol>
+- **code** [self-hosted cgit](https://code.tjp.lol/)
+- **fedi** [@tjpcc@tilde.zone](https://tilde.zone/@tjpcc)
+- **gemini** <gemini://tjp.lol/>
+
+---
+
+## colophon
+
+This site is generated from Markdown and Go templates by [Weft](https://code.tjp.lol/weft.git), with a single [stylesheet](/style.css).
+
+- **Type:** system UI font for prose, system monospace for headings and code. No web fonts of network requests for type.
+- **Color:** light and dark themes via `prefers-color-scheme`. It follows your OS setting in CSS.
+- **Weblog:** published from Markdown as static HTML.
+- **Notes:** authored in Obsidian and Neovim, synced across my devices by Syncthing, built into static pages by Weft and published [here](/notes/).
+- **Build:** Weft recursively renders Markdown and Go templates. AI may assist with coding and batch refactoring, but never with any published post content.
+- **Hosting:** static files self-hosted on a VPS.
+- **License:** content is [CC BY 4.0](https://creativecommons.org/licences/by/4.0/) unless a page says otherwise. Take it, remix it, just credit me.