Fixed RTL on website

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-09-17 14:43:14 +02:00 committed by Alexander Borsuk
parent 863015376d
commit aee4b5adeb
3 changed files with 8 additions and 2 deletions

View file

@ -5,7 +5,8 @@
{%- endif %}
<!DOCTYPE html>
<html lang="{{ lang }}">
{%- set rtl_langs = ["ar", "arc", "dv", "fa", "ha", "he", "khw", "ks", "ku", "ps", "ur", "yi"] -%}
<html lang="{{ lang }}" {%- if lang in rtl_langs -%} dir="rtl" {%- endif -%}>
<head>
<meta charset="utf-8">

View file

@ -23,6 +23,9 @@
{% if translatedPage %}
{% set page = get_page(path=translatedPage.path) %}
{% endif %}
<section{% if page.translations | length <= 1 %} dir="auto"{% endif %}>
<div class="news_date">&nbsp;<a href="{{ page.path | safe }}">{{ page.date | date(format='%B %e, %Y') }}</a>&nbsp;</div>
{# Display wide images below the text instead of to the right. #}
{% set_global noflex = '' %}
@ -44,6 +47,8 @@
{% endfor %}
</span>
</section>
</div>
{% endfor %}
{% endfor %}

View file

@ -4,7 +4,7 @@
<h1>{{ resource.date | date(format='%B %e, %Y') }}</h1>
<div class="news_content">
<div class="news_content"{% if resource.translations | length <= 1 %} dir="auto"{% endif %}>
{{ resource.content | safe }}
</div>