diff options
author | Adam Spragg <adam@spra.gg> | 2018-05-31 23:25:50 +0100 |
---|---|---|
committer | Adam Spragg <adam@spra.gg> | 2018-05-31 23:25:50 +0100 |
commit | 93858a4c34dd4007c72e915ed175bcdc24bbdadd (patch) | |
tree | 40279e7f6f521f0abc97a9f317ed500acb0d141e /rawdog/page.template |
First fully working config and content for the site
Diffstat (limited to 'rawdog/page.template')
-rw-r--r-- | rawdog/page.template | 34 |
1 files changed, 34 insertions, 0 deletions
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> |