Feat: import work and verify compilation
This commit is contained in:
@@ -2,15 +2,15 @@
|
||||
|
||||
{% block content %}
|
||||
|
||||
{% for article in articles_page.object_list|sort(reverse=True,attribute='modified') %}
|
||||
{% for article in articles_page.object_list %}
|
||||
<article>
|
||||
<header>
|
||||
<h2><a href="{{ SITEURL }}/{{ article.url }}{% if not DISABLE_URL_HASH %}#{{ article.slug }}{% endif %}">{{ article.title }}</a></h2>
|
||||
<p>
|
||||
{{ _('Posted on %(when)s (last modification %(modified)s) in %(category)s',
|
||||
when=article.locale_date,
|
||||
modified=article.locale_modified,
|
||||
category='<a href="%s/%s">%s</a>'|format(SITEURL, article.category.url, article.category)|safe) }}
|
||||
{{ _('Posted on %(when)s (modified on %(mod)s) in %(category)s',
|
||||
when=article.locale_date,
|
||||
mod=article.locale_modified,
|
||||
category='<a href="%s/%s">%s</a>'|format(SITEURL, article.category.url, article.category)|safe) }}
|
||||
|
||||
{% if article.tags and not HOME_HIDE_TAGS %}
|
||||
• {{ _('Tagged with') }}
|
||||
|
Reference in New Issue
Block a user