From 5e265b655766acc9bf8d0380fcaaaa5f9704654a Mon Sep 17 00:00:00 2001 From: Danial Behzadi Date: Fri, 26 Mar 2021 06:12:12 +0430 Subject: [PATCH] Create signed_rtl.html --- _layouts/signed_rtl.html | 51 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 _layouts/signed_rtl.html diff --git a/_layouts/signed_rtl.html b/_layouts/signed_rtl.html new file mode 100644 index 000000000..e8bbfec95 --- /dev/null +++ b/_layouts/signed_rtl.html @@ -0,0 +1,51 @@ +--- +layout: home +--- + +{% include css.html %} + +
+

Translations:

+ 🇺🇸 + 🇨🇳 + 🇹🇷 + 🇷🇴 + 🇪🇸 + 🇧🇷 + 🇩🇪 + 🇫🇷 + 🇵🇱 + 🇮🇹 + 🇰🇷 + 🇷🇺 + 🇮🇷 + 🇺🇦 + 🇮🇩 + 🇷🇸 +
+ +
+{{ content }} +
+ +

+ + Signed: + +

+ +
    + {% 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] %} +
  1. {{ sign_items[0] | strip }}
  2. + {% endif %} + {% endfor %} +