summaryrefslogtreecommitdiff
path: root/templates/feed.html
diff options
context:
space:
mode:
authorLain Iwakura <lain@lainmail.xyz>2026-03-15 19:00:16 +0300
committerLain Iwakura <lain@lainmail.xyz>2026-03-15 19:00:16 +0300
commitac3f12a7c0f70511eafec13dce83946c111cbda2 (patch)
treed96e7154f81af58773e31f36d1bc794c68d81ef0 /templates/feed.html
feat: initial + ci
Diffstat (limited to 'templates/feed.html')
-rw-r--r--templates/feed.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/templates/feed.html b/templates/feed.html
new file mode 100644
index 0000000..2a7d335
--- /dev/null
+++ b/templates/feed.html
@@ -0,0 +1,41 @@
+<!doctype html>
+<html>
+<head>
+<meta charset="utf-8">
+<title>{{website.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>
+<pre>
+ _ _
+ | |__ _(_)_ _
+ | / _` | | ' \
+ |_\__,_|_|_||_|
+</pre>
+
+{{#posts}}
+<a href="{{url}}">{{title}}</a> - {{description}}<br>
+{{/posts}}
+{{^posts}}
+no posts yet...
+{{/posts}}
+</body>
+</html>