Revert "Localise clean-blog Theme"
This commit is contained in:
@ -105,14 +105,14 @@
|
||||
{% if article.headline %}
|
||||
<h3 class="subheading">{{ article.headline }}</h3>
|
||||
{% endif %}
|
||||
<span class="meta">{{ gettext('Posted by') }}
|
||||
<span class="meta">Posted by
|
||||
{% for author in article.authors %}
|
||||
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
|
||||
{% endfor %}
|
||||
{{ gettext('on') }} {{ article.locale_date }}
|
||||
on {{ article.locale_date }}
|
||||
</span>
|
||||
{% if article.modified %}
|
||||
<span class="meta">{{ gettext('Updated on %(moddate)s', moddate=article.locale_modified) }}</span>
|
||||
<span class="meta">Updated on {{ article.locale_modified }}</span>
|
||||
{% endif %}
|
||||
{% import 'translations.html' as translations with context %}
|
||||
{{ translations.translations_for(article) }}
|
||||
@ -131,7 +131,7 @@
|
||||
|
||||
{% if article.tags %}
|
||||
<div class="tags">
|
||||
<p>{{ gettext('tags') }} : {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag | escape }}</a>{% if not loop.last %}, {% endif %}{% endfor %}</p>
|
||||
<p>tags: {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag | escape }}</a>{% if not loop.last %}, {% endif %}{% endfor %}</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
@ -152,7 +152,7 @@
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>{{ gettext('Please enable JavaScript to view the comments.') }}</noscript>
|
||||
<noscript>Please enable JavaScript to view the comments.</noscript>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock content %}
|
||||
|
Reference in New Issue
Block a user