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

<html>
  <head>
    <title>ryuslash</title>
    <link href="/static/main.css" type="text/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?</div>

    {% block menu %}{% endblock %}

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