diff options
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 %} |