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.html40
1 files changed, 27 insertions, 13 deletions
diff --git a/aggregator/templates/aggregator/base.html b/aggregator/templates/aggregator/base.html
index 8585b8c..215ec7e 100644
--- a/aggregator/templates/aggregator/base.html
+++ b/aggregator/templates/aggregator/base.html
@@ -10,22 +10,36 @@
</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?
- <a class="category" href="/activity/">Activities</a>
- <a class="category" href="/post/">Posts</a>
- </h2>
- </hgroup>
+ <img src="/static/logo.png" alt="ryuslash.org" title="ryuslash.org"/>
+ <h1>
+ <a href="http://ryuslash.org">
+ <span id="logo-blue">ryu</span><span id="logo-orange">slash</span>
+ </a>
+ </h1>
+
+ <nav>
+ <ul>
+ {% if category == 'post' %}
+ <li class="selected top">
+ {% else %}
+ <li class="top">
+ {% endif %}
+ <a href="/">posts</a>
+ </li>
+
+ {% if category == 'activity' %}
+ <li class="selected bottom">
+ {% else %}
+ <li class="bottom">
+ {% endif %}
+ <a href="/activity/">activities</a>
+ </li>
+ </ul>
+ </nav>
</header>
- <div id="content">
+ <section class="content">
{% block content %}{% endblock %}
</div>
</body>