organicmaps-website/templates/news_post.html
Alexander Borsuk aee4b5adeb Fixed RTL on website
Signed-off-by: Alexander Borsuk <me@alex.bio>
2023-09-18 23:57:01 +02:00

19 lines
548 B
HTML

{% extends 'base.html' %}
{% block content %}
<h1>{{ resource.date | date(format='%B %e, %Y') }}</h1>
<div class="news_content"{% if resource.translations | length <= 1 %} dir="auto"{% endif %}>
{{ resource.content | safe }}
</div>
{% for photo in resource.assets | sort %}
<img class="news_image" src="{{ resource.path | safe }}{{ photo | split(pat='/') | last }}" />
{% endfor %}
<div class="back_to_news">
<a href="{{ get_url(path="@/news/_index.md", lang=lang) }}">{{ trans(key='back', lang=lang) }}</a>
</div>
{% endblock content %}