aboutsummaryrefslogtreecommitdiff
path: root/blog/template.html
diff options
context:
space:
mode:
authornathansmith <nathansmith@posteo.com>2025-03-29 03:24:52 -0600
committernathansmith <nathansmith@posteo.com>2025-03-29 03:24:52 -0600
commit0c2c40c76f78cf8807d49e3aa77b6aa9fa151fe6 (patch)
treeea0b42decceb1cc63f13d0456da5c37df98dcb4d /blog/template.html
parent934547dd32ba011e8f1f030fbce59b66c7887703 (diff)
Working on blog
Diffstat (limited to 'blog/template.html')
-rw-r--r--blog/template.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/blog/template.html b/blog/template.html
new file mode 100644
index 0000000..719d3f3
--- /dev/null
+++ b/blog/template.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <title>Nathan's shitty blog</title>
+ <link rel="alternate" type="application/rss+xml" title="Nathan's shitty blog" href="feed.xml">
+
+<style>
+
+body {
+ color: black;
+ background-image: url('');
+}
+
+table {
+ color: black;
+ background-color: #bebebe;
+ margin-top: 10px;
+ margin-bottom: 10px;
+ margin-left: 10px;
+ margin-right: 10px;
+}
+
+</style>
+
+</head>
+
+<body>
+ <a href="index.html"><img src="../images/back_home.png" alt="Back to home page"/></a>
+
+ <center>
+ <table border="1" width="60%">
+ <tr>
+ <td>
+ <h1>Nathan's shitty blog</h1>
+ <p>
+ </p>
+ </td>
+ </tr>
+ </table>
+
+ <!-- Python will insert the articles from rss here -->
+ {articles}
+ </center>
+</body>
+</html>