summaryrefslogtreecommitdiff
path: root/data/templates/list.htm
blob: d0732ea45b48d464d21e807656eea9960e80e304 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.htm" %}
{% block title %}List of all pastes{% endblock %}

{% block content %}
<ul class="nav nav-pills nav-stacked">
{% for repo in repos %}
 {% include 'repo-list.htm' %}
{% endfor %}
</ul>

 {% include 'pager.htm' %}

{% endblock %}