aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/layout.html
blob: d1040422083a84f4564356fba4adcec12132344c (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html>
  {% block head %}
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="description" content="pyAggr3g470r is a news aggregator with a Web interface based on Flask. It can be
deployed on Heroku or on a traditional server." />
    <meta name="author" content="" />

    <title>{% if head_title %}{{ head_title }} - {% endif %}pyAggr3g470r</title>

    <link rel="shortcut icon" href="{{ url_for('.static', filename='img/favicon.png') }}" />

    <!-- Bootstrap core CSS -->
    <link href="{{ url_for('.static', filename = 'css/bootstrap.css') }}" rel="stylesheet" media="screen" />

    <!-- Add custom CSS here -->
    <style>
        body {
            margin-top: 60px;
        }
        div.top {
            position: relative;
            top:-60px;
            display: block;
            height: 0;
        }
        ul.affix {
            position: fixed; 
            top: 0px;
        }
        ul.affix-top {
            position: static;
        }
        ul.affix-bottom {
            position: absolute;
        }
        /* First level of nav */
        .sidenav {
            margin-top: 60px;
            margin-bottom: 0px;
            padding-top:    10px;
            padding-bottom: 0px;
            overflow-y: auto;
            height: 90%;
            z-index: 1000;
            background-color: #ffffff;
            border-radius: 2px;
            font-size: 100%;
        }
        /* All levels of nav */
        .sidebar .nav > li > a {
            display: block;
            color: #716b7a;
            padding: 5px 20px;
        }
        .sidebar .nav > li > a:hover,
        .sidebar .nav > li > a:focus {
            text-decoration: none;
            background-color: #e5e3e9;
        }
        .sidebar .nav > .active > a,
        .sidebar .nav > .active:hover > a,
        .sidebar .nav > .active:focus > a {
            font-weight: bold;
            color: #563d7c;
            background-color: transparent;
        }
        /* Nav: second level */
        .sidebar .nav .nav {
            margin-bottom: 8px;
        }
        .sidebar .nav .nav > li > a {
            padding-top:    3px;
            padding-bottom: 3px;
            font-size: 80%;
        }
    </style>

  </head>
  {% endblock %}

  <body data-spy="scroll" data-target="#affix-nav">
    <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
      <div class="container-fluid">
        <div class="navbar-header">
          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
            <span class="sr-only">Toggle navigation</span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
          </button>
          <a class="navbar-brand" href="/">pyAggr3g470r</a>
        </div>

        <!-- Collect the nav links, forms, and other content for toggling -->
        <div class="collapse navbar-collapse navbar-ex1-collapse">
          <ul class="nav navbar-nav navbar-right">
            {% if g.user.is_authenticated() %}
                <li class="dropdown">
                    <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ _('Articles') }} <b class="caret"></b></a>
                    <ul class="dropdown-menu">
                        <li><a accesskey="r" href="/fetch/">{{ _('Fetch') }}</a></li>
                        <li><a href="/mark_as_read/">{{ _('Mark all as read') }}</a></li>
                        <li role="presentation" class="divider"></li>
                        <li><a href="/create_feed/">{{ _('Add a feed') }}</a></li>
                    </ul>
                </li>
                <li class="dropdown">
                    <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ _('Filter') }} <b class="caret"></b></a>
                    <ul class="dropdown-menu">
                        <li><a accesskey="u" href="/unread/">{{ _('Unread') }}</a></li>
                        <li><a accesskey="f" href="/favorites/">{{ _('Favorites') }}</a></li>
                        <li><a accesskey="i" href="/inactives/">{{ _('Inactive feeds') }}</a></li>
                        <li><a href="/feeds/">{{ _('All feeds') }}</a></li>
                        <li><a href="/history/">{{ _('History') }}</a></li>
                    </ul>
                </li>
                <li><a accesskey="m" href="/management/">{{ _('Management') }}</a></li>
                {% if g.user.is_admin() %}
                    <li><a href="{{ url_for('dashboard') }}"><span class="glyphicon glyphicon-dashboard"></span> {{ _('Dashboard') }}</a></li>
                {% endif %}
                <li><a href="/about/">{{ _('About') }}</a></li>
                <li><a href="{{ url_for('logout') }}">{{ _('Logout') }}</a></li>
                <li class="dropdown">
                    <a href="#" class="dropdown-toggle" data-toggle="dropdown">
                        <button class="btn btn-default btn-xs" type="submit"><span class="glyphicon glyphicon-search"></span></button> <b class="caret"></b>
                    </a>
                    <ul class="dropdown-menu">
                        <li>
                            <form class="navbar-form" method=get action="/search/" role="search">
                                <div class="input-group">
                                    <input type="text" class="form-control" name="query" placeholder="Search">
                                </div>
                            </form>
                        </li>
                    </ul>
                </li>
            {% else %}
                <li><a href="/about/">{{ _('About') }}</a></li>
            {% endif %}
          </ul>
        </div><!-- /.navbar-collapse -->
      </div><!-- /.container -->
    </nav>

    <div class="container">
    {% with messages = get_flashed_messages(with_categories=true) %}
    {% if messages %}
        {% for category, message in messages %}
            <div class="alert alert-{{category}}">
                <button type="button" class="close" data-dismiss="alert">&times;</button>
                {{ message }}
            </div>
        {% endfor %}
    {% endif %}
    {% endwith %}
    </div>

    {% block content %}{% endblock %}

    <!-- Bootstrap core JavaScript -->
    <!-- Placed at the end of the document so the pages load faster -->
    <!-- Make sure to add jQuery - download the most recent version at http://jquery.com/ -->
    <script src="{{ url_for('.static', filename = 'js/jquery.js') }}"></script>
    <script src="{{ url_for('.static', filename = 'js/bootstrap.js') }}"></script>
  </body>
</html>
bgstack15