99 lines
1.9 KiB
Text
99 lines
1.9 KiB
Text
|
<!DOCTYPE html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>{{ subject }} · Acrate Webfinger</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>
|
||
|
Acrate Webfinger
|
||
|
</h1>
|
||
|
<h2 id="section-subject">
|
||
|
<span>{{ subject }}</span>
|
||
|
</h2>
|
||
|
{% if aliases %}
|
||
|
<section id="section-aliases">
|
||
|
<h3>
|
||
|
Aliases
|
||
|
</h3>
|
||
|
<ul>
|
||
|
{% for alias in aliases %}
|
||
|
<li><span>{{ alias }}</span></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</section>
|
||
|
{% endif %}
|
||
|
{% if properties %}
|
||
|
<section id="section-properties">
|
||
|
<h3>
|
||
|
Properties
|
||
|
</h3>
|
||
|
<dl>
|
||
|
{% for property in properties %}
|
||
|
<dt>
|
||
|
<a href="{{ property[0] }}">{{ property[0] }}</a>
|
||
|
</dt>
|
||
|
<dd>
|
||
|
<span>{{ property[1] }}</span>
|
||
|
</dd>
|
||
|
{% endfor %}
|
||
|
</dl>
|
||
|
</section>
|
||
|
{% endif %}
|
||
|
{% if links %}
|
||
|
<section id="section-links">
|
||
|
<h3>
|
||
|
Links
|
||
|
</h3>
|
||
|
<dl>
|
||
|
{% for link in links %}
|
||
|
<dt>
|
||
|
<h4>
|
||
|
<a href="{{ link[0] }}">{{ link[0] }}</a>{% if link[1] is not none %} <small>(<span>{{ link[1] }}</span>)</small>{% endif %}
|
||
|
</h4>
|
||
|
</dt>
|
||
|
<dd>
|
||
|
<h5>
|
||
|
Link destination
|
||
|
</h5>
|
||
|
{% if link[2] is not none %}
|
||
|
<a href="{{ link[2] }}">{{ link[2] }}</a>
|
||
|
{% elif link[3] is not none %}
|
||
|
<span>{{ link[3] }}</span>
|
||
|
{% endif %}
|
||
|
{% if link[4] %}
|
||
|
<h5>
|
||
|
Link properties
|
||
|
</h5>
|
||
|
<dl>
|
||
|
{% for property in link[4] %}
|
||
|
<dt>
|
||
|
<a href="{{ property[0] }}">{{ property[0] }}</a>
|
||
|
</dt>
|
||
|
<dd>
|
||
|
<span>{{ property[1] }}</span>
|
||
|
</dd>
|
||
|
{% endfor %}
|
||
|
</dl>
|
||
|
{% endif %}
|
||
|
{% if link[5] %}
|
||
|
<h5>
|
||
|
Link titles
|
||
|
</h5>
|
||
|
<dl>
|
||
|
{% for title in link[5] %}
|
||
|
<dt>
|
||
|
<span>{{ title[0] }}</span>
|
||
|
</dt>
|
||
|
<dd>
|
||
|
<span>{{ title[1] }}</span>
|
||
|
</dd>
|
||
|
{% endfor %}
|
||
|
</dl>
|
||
|
{% endif %}
|
||
|
</dd>
|
||
|
{% endfor %}
|
||
|
</dl>
|
||
|
</section>
|
||
|
{% endif %}
|
||
|
</body>
|