implement request #13: simple remote forking works now
[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 %}