aboutsummaryrefslogtreecommitdiffstats
path: root/aggregator/templates/aggregator/base.html
blob: 4a241351a34b365041a189076af5c914867a1231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!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?
          <a class="category" href="/activity/">Activities</a>
          <a class="category" href="/post/">Posts</a>
        </h2>
      </hgroup>
    </header>

    {% block menu %}{% endblock %}

    <div id="content">
      {% block content %}{% endblock %}
    </div>
  </body>
</html>