forked from organicmaps/website
Fixed RTL on website
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
863015376d
commit
aee4b5adeb
3 changed files with 8 additions and 2 deletions
|
@ -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">
|
||||
|
|
|
@ -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"> <a href="{{ page.path | safe }}">{{ page.date | date(format='%B %e, %Y') }}</a> </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 %}
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue