mirror of
https://github.com/arcan1s/arcanis.me.git
synced 2025-04-24 15:27:17 +00:00
22 lines
819 B
HTML
22 lines
819 B
HTML
<p>
|
|
{% if page.category == "ru" %}
|
|
{% if page.hasTr == true %}
|
|
{% if page.type == "paper" %}
|
|
<a href="{{ page.url | replace: '/ru/', '/en/' }}"><img src="/resources/en.png"></a>
|
|
{% else %}
|
|
<a href="{{ page.url | replace: '/ru/', '/' }}"><img src="/resources/en.png"></a>
|
|
{% endif %}
|
|
{% endif %}
|
|
<small>Расположено на GitHub Pages. <a href="/ru/authors">Авторы</a></small>
|
|
{% else %}
|
|
{% if page.hasTr == true %}
|
|
{% if page.type == "paper" %}
|
|
<a href="{{ page.url | replace: '/en/', '/ru/' }}"><img src="/resources/ru.png"></a>
|
|
{% else %}
|
|
<a href="/ru{{ page.url }}"><img src="/resources/ru.png"></a>
|
|
{% endif %}
|
|
{% endif %}
|
|
<small>Hosted on GitHub Pages. <a href="/authors">Authors</a></small>
|
|
{% endif %}
|
|
</p>
|