diff options
Diffstat (limited to 'lightweight/templates/index.html')
-rw-r--r-- | lightweight/templates/index.html | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lightweight/templates/index.html b/lightweight/templates/index.html index b51a318..d5879bd 100644 --- a/lightweight/templates/index.html +++ b/lightweight/templates/index.html @@ -6,12 +6,7 @@ {% for article in articles %} <article class="post"> <h2 class="title"><a href="{{ SITEURL }}/{{ article.url}}">{{ article.title }}</a></h2> - <details class="meta"> - <p> - Posté{%if article.date %} le <time pubdate="pubdate" datetime="{{ article.date }}">{{ article.date }}</time>{% endif %}{% if article.author %} par {{ article.author }}{% endif %} dans «<a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>». - {% if articles.tags %}<br />Tags : {% for tag in article.tags %}{% if loop.index > 1%}, {% endif %}<span class="tag"><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a></span>{% endfor %}{%endif%} - </p> - </details> + {%include 'meta.html'%} <section class="post_content"> {{ article.summary }}<br /> |