diff options
| author | Lain Iwakura <lain@lainmail.xyz> | 2026-03-15 19:00:16 +0300 |
|---|---|---|
| committer | Lain Iwakura <lain@lainmail.xyz> | 2026-03-15 19:00:16 +0300 |
| commit | ac3f12a7c0f70511eafec13dce83946c111cbda2 (patch) | |
| tree | d96e7154f81af58773e31f36d1bc794c68d81ef0 /templates/post.html | |
feat: initial + ci
Diffstat (limited to 'templates/post.html')
| -rw-r--r-- | templates/post.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..f2a175b --- /dev/null +++ b/templates/post.html @@ -0,0 +1,33 @@ +<!doctype html> +<html> +<head> +<meta charset="utf-8"> +<title>{{post.title}}</title> +<!--TODO: move to external file--> +<style> + body { + font-family: monospace; + background: #000; + color: #0f0; + margin: 20px; +} + +a { + color: #0f0; + text-decoration: underline; +} + +a:hover { + background: #0f0; + color: #000; +} +</style> +</head> +<body> +<a href="/index.html"><- back</a> +<h1>{{post.title}}</h1> +<p>{{post.description}}</p> +<hr> +{{{post.body}}} +</body> +</html> |
