aboutsummaryrefslogtreecommitdiffstats
path: root/templates/aggregator/base.html
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-05-21 22:26:37 +0200
committerGravatar Tom Willemsen2012-05-21 22:26:37 +0200
commit44cdd17a88595e16a9fd43f55e9dac38a0047e6b (patch)
treeca36baa776f717b1c2b6c0a64be48d034b7a5253 /templates/aggregator/base.html
parent8944ff3fba186e71a7349c1a06153f32650e77d4 (diff)
downloadryuslash.org-44cdd17a88595e16a9fd43f55e9dac38a0047e6b.tar.gz
ryuslash.org-44cdd17a88595e16a9fd43f55e9dac38a0047e6b.zip
Move templates
Moved templates into the aggregator app's folder.
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>