Align 'fork-remote-new' across all widths
[phorkie.git] / data / templates / list.htm
1 {% extends "base.htm" %}
2 {% block title %}List of all pastes{% endblock %}
3
4 {% block content %}
5 <ul class="nav nav-pills nav-stacked">
6 {% for repo in repos %}
7  {% include 'repo-list.htm' %}
8 {% endfor %}
9 </ul>
10
11  {% include 'pager.htm' %}
12
13 {% endblock %}
14
15 {% block sidebar %}
16  {% if recents.results %}
17   <h4>Recently updated</h4>
18   <ul class="unstyled">
19   {% for repo in recents.repos %}
20    {% include 'repo-sidebar-list.htm' %}
21   {% endfor %}
22   </ul>
23  {% endif %}
24 {% endblock %}