You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
567 B
16 lines
567 B
<p><b>Signed ({{ site.data.signed.size }} individuals):</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> |