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.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/templates/aggregator/base.html b/templates/aggregator/base.html
deleted file mode 100644
index 8f752bd..0000000
--- a/templates/aggregator/base.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!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>