30 řádky
875 B
HTML
Spustitelný soubor
30 řádky
875 B
HTML
Spustitelný soubor
{% import "./macros/catalog-entry.html" as catalog_entry %}
|
|
{% import "./macros/post-actions.html" as post_actions %}
|
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Katalog nadnístěnky{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="center">
|
|
{% if let Some(banner) = tcx.cfg.site.site_banner %}
|
|
<img class="banner" src="{{ banner }}">
|
|
{% endif %}
|
|
<h1 class="title">Katalog nadnástěnky</h1>
|
|
<p class="description">Nově naťuknutá vlákna ze všech nástěnek</p>
|
|
<a href="/overboard">Index</a>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<form method="post">
|
|
<div class="catalog">
|
|
{% for thread in threads %}
|
|
{% call catalog_entry::catalog_entry(thread, loop.index, 15) %}
|
|
{% endfor %}
|
|
</div>
|
|
<hr>
|
|
{% call post_actions::post_actions(tcx.perms) %}
|
|
</form>
|
|
{% endblock %}
|