diff options
author | nathan <nathansmith@disroot.org> | 2025-08-10 15:02:05 -0600 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-08-10 15:02:05 -0600 |
commit | 3e36028d99b21d8946085be6b3597b63d1ed14d1 (patch) | |
tree | 9dc0c1ea8f22394243097205dfc10cf829ad48ae /org/blog/article-template.xhtml | |
parent | 0880780d5744d346ad44f4552cd25f8f5169a940 (diff) |
Better blog format
Diffstat (limited to 'org/blog/article-template.xhtml')
-rw-r--r-- | org/blog/article-template.xhtml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/org/blog/article-template.xhtml b/org/blog/article-template.xhtml new file mode 100644 index 0000000..099d547 --- /dev/null +++ b/org/blog/article-template.xhtml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" +"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> +<head> + <title>~a</title> + <link rel="icon" type="image/x-icon" href="../../images/icon.png" /> + <link rel="alternate" type="application/rss+xml" title="Nathan's shitty blog" + href="../feed.xml" /> + <link rel="stylesheet" type="text/css" href="../../css/blog.css" /> + <style type="text/css"> + body { background-image: url("../../images/blog-background.jpg"); } + </style> +</head> +<body> + <a href="../../index.xhtml"><img src="../../images/back_home.png" + alt="Back to home page"/></a> + <br /> + <a href="../index.xhtml"><img src="../../images/back-to-blog-index.png" + alt="Back to blog index"/></a> + <div class="container"> + <div class="article-header"> + <h1>~a</h1> + <p>--- ~a</p> + </div> + ~a + </div> +</body> +</html> |