aboutsummaryrefslogtreecommitdiffstats
path: root/ryuslash/aggregator/templates/aggregator/base.html
blob: 215ec7eaeb9141220c29c55f33f0d98c21df3bfe (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
35
36
37
38
39
40
41
42
43
44
45
46
<!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>

    <header>
      <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>

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