diff options
| author | t <t@tjp.lol> | 2026-07-11 12:08:14 -0600 |
|---|---|---|
| committer | t <t@tjp.lol> | 2026-07-11 12:10:15 -0600 |
| commit | 2ab0e23eca3c5cac82d948e506b3f1cb81bedd18 (patch) | |
| tree | 46dc28dcea6265ece0f4763cdff372f84578e172 /projects | |
| parent | 9faffbf6bc5083239d69a2daedac273e6d814bc3 (diff) | |
Migrate site pages to Weft templates and Markdown
Diffstat (limited to 'projects')
| -rw-r--r-- | projects/index.html | 12 | ||||
| -rw-r--r-- | projects/index.html.tmpl | 28 |
2 files changed, 33 insertions, 7 deletions
diff --git a/projects/index.html b/projects/index.html index 0943b48..6bc0dc5 100644 --- a/projects/index.html +++ b/projects/index.html @@ -14,8 +14,8 @@ <h1 class="brand"><a href="../index.html">~tjp<span class="cur"> $_</span></a></h1> <nav class="main"> <a href="../weblog/index.html">weblog</a> - <!-- <a href="../notes/index.html">notes</a> --> - <a href="../projects/index.html" aria-current="page">projects</a> + + <a href="index.html" aria-current="page">projects</a> <a href="../about/index.html">about</a> <a href="../feed.xml">feed</a> </nav> @@ -36,13 +36,11 @@ </main> <footer> - <!-- <div class="ring"> - <span>webring:</span> - <a href="#">← prev</a><a href="#">rand</a><a href="#">next →</a> - </div> --> - <p>hand-written in slc · ©2026 tjp · <a href="../feed.xml">feed</a></p> + + <p>©2026 tjp · content <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> unless noted · <a href="../feed.xml">feed</a></p> </footer> </div> </body> </html> + diff --git a/projects/index.html.tmpl b/projects/index.html.tmpl new file mode 100644 index 0000000..a99a10b --- /dev/null +++ b/projects/index.html.tmpl @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +<meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1"> +<title>Projects — tjp.lol</title> +<meta name="description" content="Things tjp has built."> +<link rel="stylesheet" href="../style.css"> +</head> +<body> +<div class="wrap"> + +{{template "header" .}} + <main> + <section class="intro"> + <p>Small things I've built and still maintain. Most live on <a href="https://github.com/teepark">GitHub</a>.</p> + </section> + + <section> + <h2 class="sec">maintained</h2> + </section> + + <section> + <h2 class="sec">archived / for fun</h2> + </section> + </main> + +{{template "footer" .}} |
