add some spacing for new and list page to the navbar
[phorkie.git] / data / templates / list.htm
1 {% extends "base.htm" %}
2 {% block title %}List of all pastes{% endblock %}
3
4 {% block content %}
5 <div style="height: 1em"></div>
6 <ul class="nav nav-pills nav-stacked">
7 {% for repo in repos %}
8  {% include 'repo-list.htm' %}
9 {% endfor %}
10 </ul>
11
12  {% include 'pager.htm' %}
13
14 {% endblock %}
15
16 {% block sidebar %}
17  {% if recents.results %}
18   <h4>Recently updated</h4>
19   <ul class="unstyled">
20   {% for repo in recents.repos %}
21    {% include 'repo-sidebar-list.htm' %}
22   {% endfor %}
23   </ul>
24  {% endif %}
25 {% endblock %}