summaryrefslogtreecommitdiff
path: root/index.html.tmpl
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 /index.html.tmpl
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 'index.html.tmpl')
-rw-r--r--index.html.tmpl34
1 files changed, 16 insertions, 18 deletions
diff --git a/index.html.tmpl b/index.html.tmpl
index 83a9a4f..59a87e3 100644
--- a/index.html.tmpl
+++ b/index.html.tmpl
@@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tjp.lol</title>
-<meta name="description" content="Personal site of tjp — software engineer in Salt Lake City. Weblog, notes, projects.">
+<meta name="description" content="tjp — software and stuff">
<link rel="stylesheet" href="style.css">
<link rel="alternate" type="application/atom+xml" title="tjp.lol" href="feed.xml">
</head>
@@ -14,8 +14,13 @@
{{template "header" .}}
<main>
<section class="intro">
- <p>Welcome in. This site is my writing desk: weblog posts moving over from my <span class="mono">gemini://</span> capsule, plus a public cut of the notes I keep in Obsidian and sync across my machines with Syncthing.</p>
- <p>Plain HTML and CSS. No JavaScript, no tracking &mdash; it reads exactly the same with scripts turned off. That's the point.</p>
+ <p>Welcome to my web space. This site is my writing desk: some random pages, weblog posts, and a public cut of the notes I keep synced across my machines.</p>
+ <p>Plain HTML and CSS. No Javascript, no tracking.</p>
+ <p>My interests are a bit all over the place, but around this site you can also find:</p>
+ <ul>
+ <li><a href="https://code.tjp.lol">open source code repos</a></li>
+ <li><a href="https://film.tjp.lol">a gallery of film photography</a></li>
+ </ul>
</section>
<section>
@@ -23,23 +28,16 @@
{{$posts := sortPages (index .Pages "weblog") "post_date"}}{{with $posts}}<ul class="posts">
{{range slicePages . 0 5}}<li><time datetime="{{date (index .Meta "post_date") "2006-01-02"}}">{{date (index .Meta "post_date") "2006-01-02"}}</time><a href="{{rel "index.html" .OutputPath}}">{{.Title}}</a></li>{{end}}
</ul>
- {{end}}<p style="margin-top:.9rem;font-size:.9rem;"><a href="weblog/index.html">all posts &rarr;</a></p>
+ {{end}}<p style="margin-top:.9rem;font-size:.9rem;"><a href="/weblog/">all posts &rarr;</a></p>
</section>
- <div class="cols">
- <section>
- <h2 class="sec">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://github.com/teepark">github.com/teepark</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="about/index.html">gemini://…/~tjp</a></li>
- </ul>
- </section>
- <!-- <section>
- <h2 class="sec">from the notes</h2>
- </section> -->
- </div>
+ <section>
+ <h2 class="sec">recently changed notes</h2>
+ {{$notes := sortPages (index .Pages "notes") "ModTime"}}{{with $notes}}<ul>
+ {{range slicePages . 0 5}}<li><a href="{{rel "index.html" .OutputPath}}">{{.Title}}</a></li>{{end}}
+ </ul>
+ {{end}}<p style="margin-top:.9rem;font-size:.9rem;"><a href="/notes/">notes &rarr;</a></p>
+ </section>
</main>
{{template "footer" .}}