forked from rms-support-letter/rms-support-letter.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4270cf
commit 5e265b6
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
layout: home | ||
--- | ||
|
||
{% include css.html %} | ||
|
||
<div class="translations"> | ||
<p>Translations:</p> | ||
<a class="translation" href='/'>🇺🇸</a> | ||
<a class="translation" href='/index_zh_cn.html'>🇨🇳</a> | ||
<a class="translation" href='/index_tr.html'>🇹🇷</a> | ||
<a class="translation" href='/index_ro.html'>🇷🇴</a> | ||
<a class="translation" href='/index_es.html'>🇪🇸</a> | ||
<a class="translation" href='/index_pt_br.html'>🇧🇷</a> | ||
<a class="translation" href='/index_de.html'>🇩🇪</a> | ||
<a class="translation" href='/index_fr.html'>🇫🇷</a> | ||
<a class="translation" href='/index_pl.html'>🇵🇱</a> | ||
<a class="translation" href='/index_it.html'>🇮🇹</a> | ||
<a class="translation" href='/index_ko.html'>🇰🇷</a> | ||
<a class="translation" href='/index_ru.html'>🇷🇺</a> | ||
<a class="translation" href='/index_fa.html'>🇮🇷</a> | ||
<a class="translation" href='/index_ua.html'>🇺🇦</a> | ||
<a class="translation" href='/index_id.html'>🇮🇩</a> | ||
<a class="translation" href="/index_rs.html">🇷🇸</a> | ||
</div> | ||
|
||
<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> |