Revert "Localise clean-blog Theme"

This commit is contained in:
Gilson Filho
2017-05-12 23:32:57 -03:00
committed by GitHub
parent 7572322a86
commit 8e4ccef4eb
16 changed files with 26 additions and 238 deletions

View File

@ -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 %}