You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
488 B
17 lines
488 B
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ SITEURL }}/pages{% endblock %}
|
|
{% block content_title %}pages{%endblock%}
|
|
|
|
{% block content %}
|
|
<h1>Pages, Drafts, Tutorials, ...</h1>
|
|
<p>nothing to see here </p>
|
|
dfsafsdf
|
|
<ul>
|
|
{% for article in (articles_page.object_list if articles_page else articles) %}
|
|
<div class="blogItem">
|
|
<h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
|
|
{{ article.url}}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|