mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 11:32:39 +02:00
19 lines
663 B
HTML
19 lines
663 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="content-title">
|
|
{% block content_title %}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="posts">
|
|
{% for article in articles_page.object_list %}
|
|
<div class="post">
|
|
<h1 class="post-title" style="display: inline">
|
|
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a>
|
|
</h1>
|
|
<span class="post-date" style="display: inline">{{ article.locale_date }}</span>
|
|
<span class="headline" style="display: block">{{ article.headline }}</span>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% include 'pagination.html' %}
|
|
{% endblock content %}
|