aboutsummaryrefslogtreecommitdiffstats
path: root/templates/aggregator/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/aggregator/base.html')
-rw-r--r--templates/aggregator/base.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/aggregator/base.html b/templates/aggregator/base.html
new file mode 100644
index 0000000..1f3ec37
--- /dev/null
+++ b/templates/aggregator/base.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <title>ryuslash</title>
+ <link href="/static/main.css" type="text/css" rel="stylesheet" />
+ <link rel="shortcut icon" href="/static/favicon.png" />
+ </head>
+ <body>
+
+ <a href="/"><img src="/static/logo.png" id="logo"></a>
+
+ <h1 id="sitetitle">
+ <span id="blue">ryu</span><span id="orange">slash</span>
+ </h1>
+ <div id="sitesubtitle">Will this ever really be my website?</div>
+
+ {% block menu %}{% endblock %}
+
+ <div id="content">
+ {% block content %}{% endblock %}
+ </div>
+ </body>
+</html>