+ ‘themes/yoshi/README.md’ + ‘themes/yoshi/screenshot.png’ + ‘themes/yoshi/static/css/main.css’ + ‘themes/yoshi/static/css/pygment.css’ + ‘themes/yoshi/static/css/tachyons.min.css’ + ‘themes/yoshi/static/js/jquery-3.5.0.min.js’ + ‘themes/yoshi/templates/analytics.html’ + ‘themes/yoshi/templates/archives.html’ + ‘themes/yoshi/templates/article.html’ + ‘themes/yoshi/templates/author.html’ + ‘themes/yoshi/templates/authors.html’ + ‘themes/yoshi/templates/base.html’ + ‘themes/yoshi/templates/categories.html’ + ‘themes/yoshi/templates/category.html’ + ‘themes/yoshi/templates/comments.html’ + ‘themes/yoshi/templates/disqus_script.html’ + ‘themes/yoshi/templates/github.html’ + ‘themes/yoshi/templates/index.html’ + ‘themes/yoshi/templates/page.html’ + ‘themes/yoshi/templates/pagination.html’ + ‘themes/yoshi/templates/piwik.html’ + ‘themes/yoshi/templates/tag.html’ + ‘themes/yoshi/templates/taglist.html’ + ‘themes/yoshi/templates/tags.html’ + ‘themes/yoshi/templates/translations.html’ + ‘themes/yoshi/templates/twitter.html’
34 lines
834 B
HTML
34 lines
834 B
HTML
{% extends "base.html" %}
|
|
{% block content_header %}
|
|
<div class="fl o-50" style="font-size:0.4em;">/ <br/>{{ category }}</div>
|
|
<a class="b fr o-50" style="font-size: 0.5em;" href="{{ SITEURL }}/categories.html">*</a>
|
|
<a class="b fr o-30 pr1" style="font-size:0.8em;" href="{{ SITEURL }}">{{ SITENAME }}</a>
|
|
{% endblock %}
|
|
{% block content %}
|
|
|
|
{% for article in articles_page.object_list %}
|
|
|
|
<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 %}
|