commit
2ba1cf43d6
@ -0,0 +1,3 @@
|
||||
{% extends 'list.html' %}
|
||||
{% set page_title = "Archive" %}
|
||||
{% set list_title = "Archive" %}
|
@ -0,0 +1,7 @@
|
||||
{% extends 'base.html' %}
|
||||
{% set page_title = article.title %}
|
||||
{% block content %}
|
||||
<h1>{{ article.title }}</h1>
|
||||
{# TODO: more details here #}
|
||||
{{ article.content }}
|
||||
{% endblock content %}
|
@ -0,0 +1,3 @@
|
||||
{% extends 'list.html' %}
|
||||
{% set page_title = "Author: " + author %}
|
||||
{% set list_title = "All articles by " + author %}
|
@ -0,0 +1,5 @@
|
||||
{% extends 'base.html' %}
|
||||
{% set page_title = "TODO" %}
|
||||
{% block content %}
|
||||
{# TODO! #}
|
||||
{% endblock content %}
|
@ -0,0 +1,6 @@
|
||||
{% extends 'base.html' %}
|
||||
{% set page_title = "TODO" %}
|
||||
{% block content %}
|
||||
{# TODO! #}
|
||||
{% endblock content %}
|
||||
|
@ -0,0 +1,3 @@
|
||||
{% extends 'list.html' %}
|
||||
{% set page_title = "Category: " + category.name %}
|
||||
{% set list_title = "Category: " + category.name %}
|
@ -0,0 +1,11 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block content %}
|
||||
<h1>{{ list_title }}</h1>
|
||||
<ul> {# TODO: rly ul and not list of divs? #}
|
||||
{% for article in articles %}
|
||||
{# TODO: More pretty #}
|
||||
<li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock content %}
|
||||
|
@ -0,0 +1,5 @@
|
||||
{% extends 'list.html' %}
|
||||
{# FIXME: This is too hacky #}
|
||||
{% set page_title = "Archive: " + period %}
|
||||
{% set list_title = "Archive: " + period %}
|
||||
|
@ -1,5 +1,25 @@
|
||||
<p>Here will be menu, and tag list some day.</p>
|
||||
<ul>
|
||||
<li>First
|
||||
<li>Second
|
||||
</ul>
|
||||
<div>
|
||||
<!-- Main navigation -->
|
||||
<!-- TODO! -->
|
||||
</div>
|
||||
<div>
|
||||
<h2>Categories</h2>
|
||||
<ul>
|
||||
{% for category, _art in categories %}
|
||||
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<h2>Tags</h2>
|
||||
<ul>
|
||||
{% for tag, _art in tags %}
|
||||
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h2>Stalk me also at</h2>
|
||||
TODO!
|
||||
|
||||
<h2>I stalk</h2>
|
||||
TODO!
|
||||
|
@ -0,0 +1,4 @@
|
||||
{% extends 'list.html' %}
|
||||
{% set page_title = "Tag: " + tag.name %}
|
||||
{% set list_title = "Articles tagged with " + tag.name %}
|
||||
|
@ -0,0 +1,6 @@
|
||||
{% extends 'base.html' %}
|
||||
{% set page_title = "TODO" %}
|
||||
{% block content %}
|
||||
{# TODO! #}
|
||||
{% endblock content %}
|
||||
|
Loading…
Reference in New Issue