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