diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-01-04 13:40:21 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-01-05 11:06:20 +0100 |
commit | 1cad4c9044d47c6653d804d7fb58581d92f96cc8 (patch) | |
tree | 9696b75a4288976a00dbfc694090768ac93cdd14 /theme/templates/abstract.html | |
parent | 0c09a00a0b298cbd3bbd0082cc1026e22db9b1c5 (diff) |
Change organisation
Diffstat (limited to 'theme/templates/abstract.html')
-rw-r--r-- | theme/templates/abstract.html | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/theme/templates/abstract.html b/theme/templates/abstract.html deleted file mode 100644 index d8fa523..0000000 --- a/theme/templates/abstract.html +++ /dev/null @@ -1,27 +0,0 @@ -{% macro abstract(title_level) %} - {% for article in (articles_page.object_list if articles_page else articles) %} - <article class="post"> - <{{title_level}} class="title"><a href="{{ SITEURL }}/{{ article.url}}">{{article.title }}</a></{{title_level}}> - - - <time class="meta" datetime="{{ article.date.isoformat() }}" pubdate="pubdate">{{ article.locale_date }}</time> - <section class="post_content"> - - {% if article.logo %} - <div class="floatleft figure"> - <img src="{{ SITEURL }}/{{article.logo}}" style="max-width: 75px"> - </div> - {% endif %} - - {{ article.summary }} - <div class="floatright"> - <a href="{{ SITEURL }}/{{ article.url}}">lire la suite</a> - </div> - <div class="clear" /> - </section> - </article> - - {% endfor %} - - {% include 'navigator.html' %} -{% endmacro %} |