-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathimpl.html
48 lines (43 loc) · 1.34 KB
/
impl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
layout: default
---
<h2>{{ page.title }}</h2>
<ul>
<li>Homepage: <a href="{{ page.homepage }}">{{ page.homepage }}</a></li>
{% if page.developer %}
<li>Developer: {{ page.developer }}</li>
{% endif %}
<li>First release:
{% if page.first-release %}
{{ page.first-release.date }}
{% else %}
?
{% endif %}
</li>
<li>Latest release: {{ page.latest-release.version }} ({{ page.latest-release.date }})</li>
{% if page.changelog %}
<li>Version history: <a href="{{ page.changelog }}">{{ page.changelog }}</a></li>
{% endif %}
{% if page.source-repository %}
<li>Source repository: <a href="{{ page.source-repository }}">{{ page.source-repository }}</a></li>
{% endif %}
{% if page.license %}
<li>License: {{ page.license | markdownify | strip_newlines | remove:'<p>' | remove:'</p>' }}</li>
{% endif %}
<li>Client: {{ page.client }}</li>
<li>Server: {{ page.server }}</li>
{% if page.based-on %}
<li>Based on: {{ page.based-on | markdownify | strip_newlines | remove:'<p>' | remove:'</p>' }}</li>
{% endif %}
</ul>
<h3>Remarks</h3>
{% if page.remarks %}
{{ page.remarks | markdownify }}
{% endif %}
{{ content }}
<h3>Supported protocols</h3>
{% for proto_class in site.data.proto_classes %}
{% assign proto_class_id = proto_class[0] %}
<p><strong>{{ proto_class[1] }}:</strong>
{{ page.protocols[proto_class_id] | join: ', ' }}</p>
{% endfor %}