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

<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>ryuslash</title>
    <link href="http://ryuslash.org/bootstrap2/css/bootstrap.min.css"
          rel="stylesheet" type="text/css" />
    <link rel="shortcut icon" href="/static/favicon.png" />
    {% block head %}{% endblock %}
  </head>
  <body>

    <div class="navbar navbar-static-top">
      <div class="navbar-inner">
        <div class="container">
          <img class="pull-left" src="/static/logo.png"
               alt="ryuslash.org" title="ryuslash.org" />
          <a class="brand" href="{% url 'index' %}">ryuslash</a>
          <ul class="nav pull-right">
            <li {% if category == 'all' %}class="active"{%endif%}>
              <a href="{% url 'index' %}">all</a>
            </li>
            <li {% if category == 'post' %}class="active"{% endif %}>
              <a href="{% url 'index' cat='post' %}">posts</a>
            </li>
            <li {% if category == 'activity' %}class="active"{% endif %}>
              <a href="{% url 'index' cat='activity' %}">activities</a>
            </li>
          </ul>
        </div>
      </div>
    </div>

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