summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/list-arches.html5
-rw-r--r--templates/list-packages.html5
-rw-r--r--templates/list-ppas.html5
-rw-r--r--templates/list-series.html5
4 files changed, 20 insertions, 0 deletions
diff --git a/templates/list-arches.html b/templates/list-arches.html
new file mode 100644
index 0000000..d5f10fe
--- /dev/null
+++ b/templates/list-arches.html
@@ -0,0 +1,5 @@
+<ul>
+ {% for arch in arches %}
+ <li><a href={{base_url}}/{{arch}}>{{arch}}</a></li>
+ {% endfor %}
+</ul>
diff --git a/templates/list-packages.html b/templates/list-packages.html
new file mode 100644
index 0000000..dc2c8b9
--- /dev/null
+++ b/templates/list-packages.html
@@ -0,0 +1,5 @@
+<ul>
+ {% for pkg in packages %}
+ <li><a href={{base_url}}/{{pkg}}>{{pkg}}</a></li>
+ {% endfor %}
+</ul>
diff --git a/templates/list-ppas.html b/templates/list-ppas.html
new file mode 100644
index 0000000..b89cf31
--- /dev/null
+++ b/templates/list-ppas.html
@@ -0,0 +1,5 @@
+<ul>
+ {% for ppa in ppas %}
+ <li><a href={{base_url}}/{{ppa}}>{{ppa}}</a></li>
+ {% endfor %}
+</ul>
diff --git a/templates/list-series.html b/templates/list-series.html
new file mode 100644
index 0000000..2948ae8
--- /dev/null
+++ b/templates/list-series.html
@@ -0,0 +1,5 @@
+<ul>
+ {% for release in series %}
+ <li><a href={{base_url}}/{{release}}>{{release}}</a></li>
+ {% endfor %}
+</ul>