aboutsummaryrefslogtreecommitdiffstats
path: root/templates/aggregator/base.html
blob: 66ea7c08cc63bee387b480d55e768b4cbb460307 (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
<!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>

    <h1 id="sitetitle">
      <span id="blue">ryu</span><span id="orange">slash</span>
    </h1>
    <div id="sitesubtitle">
      Will this ever really be my website?
      {% for category in categories %}
        <a class="category"
           href="/{{ category.name|slugify }}/">{{ category.name }}</a>
      {% endfor %}
    </div>

    {% block menu %}{% endblock %}

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