diff options
| author | Olivier Gayot <olivier.gayot@sigexec.com> | 2023-01-22 19:53:18 +0100 | 
|---|---|---|
| committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2023-01-22 19:53:18 +0100 | 
| commit | c1e0c1353c5efaccf3ed4628f22589ab6a133100 (patch) | |
| tree | ab2e970132d87ed0db5f036169ab6182b3ce0705 /templates | |
| parent | 6054b08485a84de498d7ae2b680b1c968f8104b7 (diff) | |
add templates to browse
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/list-arches.html | 5 | ||||
| -rw-r--r-- | templates/list-packages.html | 5 | ||||
| -rw-r--r-- | templates/list-ppas.html | 5 | ||||
| -rw-r--r-- | templates/list-series.html | 5 | 
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> | 
