Files
valium/app/templates/index.html

32 lines
1.0 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Лента — Text-Booru{% endblock %}
{% block content %}
{% if current_tag %}
<h2>Тег: #{{ current_tag }}</h2>
{% else %}
<h2>Последние посты</h2>
{% endif %}
{% for p in posts %}
<article class="card">
<h3><a href="{{ url_for('view_post', pid=p.id) }}">{{ p.title or ("#" ~ p.id) }}</a></h3>
<div class="excerpt">{{ markdown(p.body[:400])|safe }}</div>
<div class="meta">#{{ p.id }} • {{ p.created_at }} •
{% for t in get_tags(p.id) %}<a href="{{ url_for('tag_page', name=t) }}">#{{ t }}</a> {% endfor %}
</div>
</article>
{% endfor %}
<div class="pagination">
{% if page and pages %}
{% if page > 1 %}
<a href="{{ url_for('index') }}?page={{ page-1 }}">« Prev</a>
{% endif %}
<span>Page {{ page }} / {{ pages }}</span>
{% if page < pages %}
<a href="{{ url_for('index') }}?page={{ page+1 }}">Next »</a>
{% endif %}
{% endif %}
</div>
{% endblock %}