ac3d664ee15902f645c2c102f51082686d65a07e
[phorkie.git] / data / templates / list.htm
1 {% extends "base.htm" %}
2 {% block title %}List of all pastes{% endblock %}
3
4 {% block meta %}
5  <link rel="alternate" type="application/atom+xml" title="New pastes" href="feed/new" />
6 {% endblock %}
7
8 {% block content %}
9 <div style="height: 1em"></div>
10 <ul class="nav nav-pills nav-stacked">
11 {% for repo in repos %}
12  {% include 'repo-list.htm' %}
13 {% endfor %}
14 </ul>
15
16  {% include 'pager.htm' %}
17
18 {% endblock %}
19
20 {% block sidebar %}
21  {% if recents.results %}
22   <h4>Recently updated</h4>
23   <ul class="unstyled">
24   {% for repo in recents.repos %}
25    {% include 'repo-sidebar-list.htm' %}
26   {% endfor %}
27   </ul>
28  {% endif %}
29 {% endblock %}