Create webfinger
crate #5
1 changed files with 10 additions and 1 deletions
|
@ -128,7 +128,16 @@
|
||||||
{% for link in links %}
|
{% for link in links %}
|
||||||
<dt>
|
<dt>
|
||||||
<h4>
|
<h4>
|
||||||
<a href="{{ link[0] }}">{{ link[0] }}</a>{% if link[1] is not none %} <small>(<span>{{ link[1] }}</span>)</small>{% endif %}
|
{% if link[0] != "self" %}
|
||||||
|
<a href="{{ link[0] }}">{{ link[0] }}</a>
|
||||||
|
{% else %}
|
||||||
|
<span>{{ link[0] }}</span>
|
||||||
|
{% endif %}
|
||||||
|
{% if link[1] is not none %}
|
||||||
|
<small>
|
||||||
|
(<span>{{ link[1] }}</span>)
|
||||||
|
</small>
|
||||||
|
{% endif %}
|
||||||
</h4>
|
</h4>
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
|
|
Loading…
Reference in a new issue