mirror of
https://github.com/almet/notmyidea.git
synced 2025-05-01 21:12:23 +02:00
25 lines
876 B
HTML
25 lines
876 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 {{ article.category }}">
|
|
<span class='category'>{{ article.category }}</span>
|
|
<h1>
|
|
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title}}"> {{ article.title }} </a>
|
|
</h1>
|
|
</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 %}
|