blob: 435d73c6428f9512f7bec33619f489246043a22f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Weblog — tjp.lol</title>
<meta name="description" content="Weblog posts by tjp.">
<link rel="stylesheet" href="../style.css">
<link rel="alternate" type="application/atom+xml" title="tjp.lol" href="../feed.xml">
</head>
<body>
<div class="wrap">
{{template "header" .}}
<main>
<section class="intro">
<p>Longer-form writing. The oldest posts originated on my Gemini capsule, so dates reflect the original posting.</p>
<p><a href="{{rel .OutputPath "/feed.xml"}}">Atom feed</a></p>
</section>
{{$posts := sortPages (index .Pages "weblog") "post_date" "mod_time"}}{{with $posts}}<section>
<ul class="posts">
{{range .}}{{$post_date := or (index .Meta "post_date") .ModTime}}<li><time datetime="{{date $post_date "2006-01-02"}}">{{date $post_date "2006-01-02"}}</time><a href="{{rel "weblog/index.html" .OutputPath}}">{{.Title}}</a></li>{{end}}
</ul>
</section>{{end}}
</main>
{{template "footer" .}}
|