sito-hackit-20/themes/hackit0x16/templates/index.html

38 lines
1.4 KiB
HTML
Raw Normal View History

2020-01-15 17:11:00 +01:00
{% extends "base.html" %}
{% block content_title %}{% endblock %}
{% block content %}
2020-07-18 14:28:18 +02:00
<div class="news">
2020-01-15 17:11:00 +01:00
{% if articles %}
{% for article in articles_page.object_list %}
{% if loop.first %}
<section id="content" class="body">
<ol id="posts-list" class="hfeed" start="{{ articles_paginator.per_page -1 }}">
{% endif %}
<li><article class="hentry">
<header>
<h1><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h1>
</header>
<div class="entry-content">
{% include 'article_infos.html' %}
{{ article.summary }}
<a class="readmore" href="{{ SITEURL }}/{{ article.url }}">read more</a>
{% include 'comments.html' %}
</div><!-- /.entry-content -->
</article></li>
{% if loop.last %}
{% if loop.length > 1 or articles_page.has_other_pages() %}
</ol><!-- /#posts-list -->
{% if articles_page.has_other_pages() %}
{% include 'pagination.html' %}
{% endif %}
</section><!-- /#content -->
{% endif %}
2020-07-18 14:28:18 +02:00
{% endif %}
2020-01-15 17:11:00 +01:00
{% endfor %}
{% endif %}
2020-07-18 14:28:18 +02:00
</div>
2020-01-15 17:11:00 +01:00
{% endblock content %}