aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/templates/at_repo.html
blob: dcf4d87311e28752ba4425bfd866514d01a39cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}

{% block main %}
<p><b>at://{{ did }}/</b>

<p><b>collections:</b>
<ul>
{% for collection in describe.collections %}
  <li><a href="/at/{{ did }}/{{ collection }}">{{collection}}/</a>
{% endfor %}
</ul>

<p>repo commit:
<pre><code>{{ "{:?}"|format(commit) }}</code></pre>

<p>repo describe
<pre><code>{{ "{:?}"|format(describe) }}</code></pre>
{% endblock %}