aboutsummaryrefslogtreecommitdiffstats
path: root/aggregator/templates/aggregator/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'aggregator/templates/aggregator/base.html')
-rw-r--r--aggregator/templates/aggregator/base.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/aggregator/templates/aggregator/base.html b/aggregator/templates/aggregator/base.html
new file mode 100644
index 0000000..8f752bd
--- /dev/null
+++ b/aggregator/templates/aggregator/base.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+
+<html lang="en">
+ <head>
+ <meta charset="utf-8" />
+ <title>ryuslash</title>
+ <link href="/static/main.css" rel="stylesheet" />
+ <link rel="shortcut icon" href="/static/favicon.png" />
+ {% block head %}{% endblock %}
+ </head>
+ <body>
+
+ <a href="/"><img src="/static/logo.png" id="logo"></a>
+
+ <header>
+ <hgroup>
+ <h1 id="sitetitle">
+ <span id="blue">ryu</span><span id="orange">slash</span>
+ </h1>
+ <h2 id="sitesubtitle">
+ Will this ever really be my website?
+ {% for category in categories %}
+ <a class="category"
+ href="/{{ category.name|slugify }}/">{{ category.name }}</a>
+ {% endfor %}
+ </h2>
+ </hgroup>
+ </header>
+
+ {% block menu %}{% endblock %}
+
+ <div id="content">
+ {% block content %}{% endblock %}
+ </div>
+ </body>
+</html>