mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-30 12:32:38 +02:00
24 lines
901 B
HTML
24 lines
901 B
HTML
{% extends "base.html" %}
|
|
{% block content_title %}{% endblock %}
|
|
{% block content %}
|
|
{% if articles %}
|
|
<section id="content" class="body">
|
|
<ol id="posts-list" class="hfeed">
|
|
{% for article in articles_page.object_list %}
|
|
<li><article class="hentry">
|
|
<h1>
|
|
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title}}"> {{ article.title }} </a>
|
|
</h1> {{ article.locale_date }}, in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>.
|
|
</article></li>
|
|
{% endfor %}
|
|
</ol><!-- /#posts-list -->
|
|
</section><!-- /#content -->
|
|
{% else %}
|
|
<section id="content" class="body">
|
|
<h2>Pages</h2>
|
|
{% for page in PAGES %}
|
|
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
|
|
{% endfor %}
|
|
</section>
|
|
{% endif %}
|
|
{% endblock content %}
|