Fix identation and missing trans

This commit is contained in:
Alexandre Vicenzi 2020-04-20 23:36:36 +02:00
parent 6b87efa507
commit 533bc1760e
7 changed files with 54 additions and 34 deletions

View file

@ -29,7 +29,7 @@
{% endif %}
{% if 'post_stats' in PLUGINS %}
• {{ article.stats['read_mins'] }} min read
• {{ _('%(minutes) min read', minutes=article.stats['read_mins']) }}
{% endif %}
</p>
</header>
@ -41,7 +41,10 @@
{{ article.summary }}
{% if article.content != article.summary %}
<br>
<a class="btn" href="{{ SITEURL }}/{{ article.url }}{% if not DISABLE_URL_HASH %}#{{ article.slug }}{% endif %}">{{ _('Continue reading') }}</a>
<a class="btn"
href="{{ SITEURL }}/{{ article.url }}{% if not DISABLE_URL_HASH %}#{{ article.slug }}{% endif %}">
{{ _('Continue reading') }}
</a>
{% endif %}
{% else %}
{{ article.content }}
@ -65,5 +68,4 @@
</script>
{% endif %}
{% endblock %}