rms-support-letter.github.io/_layouts/signed_rtl.html

34 lines
693 B
HTML
Raw Normal View History

2021-03-26 02:42:12 +01:00
---
layout: home
---
{% include css.html %}
2021-03-26 15:27:15 +01:00
{% include translations.html %}
2021-03-26 02:42:12 +01:00
<div style="direction: rtl">
{{ content }}
</div>
<p>
<b>
Signed:
</b>
</p>
<ol>
{% capture signs %}
{% for sign_hash in site.data.signed %}
{% assign signature = sign_hash[1] %}
|{{signature.name | escape }}#{{signature.link | escape }}
{% endfor %}
{% endcapture %}
{% assign sorted_signs = signs | split: '|' | sort %}
{% for signature in sorted_signs %}
{% assign sign_items = signature | split: '#' %}
{% if sign_items[0] and sign_items[1] %}
<li><a href="{{ sign_items[1] | strip }}">{{ sign_items[0] | strip }}</a></li>
{% endif %}
{% endfor %}
</ol>