From 93858a4c34dd4007c72e915ed175bcdc24bbdadd Mon Sep 17 00:00:00 2001
From: Adam Spragg <adam@spra.gg>
Date: Thu, 31 May 2018 23:25:50 +0100
Subject: First fully working config and content for the site

---
 rawdog/page.template | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 rawdog/page.template

(limited to 'rawdog/page.template')

diff --git a/rawdog/page.template b/rawdog/page.template
new file mode 100644
index 0000000..60c695b
--- /dev/null
+++ b/rawdog/page.template
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html>
+	<head>
+		<title>Blog</title>
+		<link rel="stylesheet" href="/style/main.css" type="text/css">
+		<meta name="robots" content="noindex,nofollow,noarchive">
+		__refresh__
+	</head>
+	<body>
+		<header>
+			<h1>Blog</h1>
+			<nav>
+				<ul>
+					<li><a href="/">Home</a></li>
+					<li><a href="/projects">Projects</a></li>
+					<li class="selected"><a href="/blog">Blog</a></li>
+					<li><a href="/privacy">Privacy</a></li>
+					<li><a href="/contact">Contact</a></li>
+				</ul>
+			</nav>
+		</header>
+		<main>
+			<section class="items">__items__</section>
+			<section class="feeds">
+				<h2>Feeds</h2>
+				__feeds__
+			</section>
+		</main>
+		<footer>
+			<p id="aboutrawdog">Generated by <a href="http://offog.org/code/rawdog.html">rawdog</a> version
+				__version__</p>
+		</footer>
+	</body>
+</html>
-- 
cgit v1.2.1