/ ‘themes/aurora/templates/base.html’ / ‘themes/aurora/templates/categories.html’ / ‘themes/aurora/templates/index.html’ / ‘themes/moe-dark/templates/categories.html’ / ‘themes/moe-dark/templates/index.html’ / ‘themes/white/templates/categories.html’ / ‘themes/white/templates/index.html’ / ‘themes/yoshi/templates/categories.html’ / ‘themes/yoshi/templates/index.html’
30 lines
894 B
HTML
30 lines
894 B
HTML
{% extends "base.html" %}
|
|
{% block content_header %}
|
|
<a class="b fl o-30" href="{{ SITEURL }}">{{ SITENAME }}</a>
|
|
<a class="b fr o-50" style="font-size: 0.5em;" href="{{ SITEURL }}/pages.html">|</a>
|
|
<a class="b fr o-50" style="font-size: 0.5em;" href="{{ SITEURL }}/categories.html">*</a>
|
|
{% endblock %}
|
|
{% block content %}
|
|
|
|
{% for article in articles_page.object_list | selectattr('category', '==', 'notes') %}
|
|
<article class="title pb2">
|
|
<a href="{{ SITEURL }}/{{ article.url }}" class="b o-50">
|
|
{{ article.title }}
|
|
</a>
|
|
</article>
|
|
<div>
|
|
{{ article.content }}
|
|
</div>
|
|
{% if not HIDE_DATE %}
|
|
<time class="db w-100 tr pb4 o-30" datetime="{{ article.date.isoformat() }}">
|
|
{{ article.date.isoformat() }}
|
|
</time>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% if articles_paginator.num_pages != 1 %}
|
|
{% include 'pagination.html' %}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|