43 řádky
1.8 KiB
HTML
Spustitelný soubor
43 řádky
1.8 KiB
HTML
Spustitelný soubor
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<meta name="description" content="{{ tcx.cfg.site.description }}">
|
|
<link rel="stylesheet" href="/static/themes/yotsuba.css">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
<!-- Muh flash of unstyled content -->
|
|
<script>0</script>
|
|
</head>
|
|
<body>
|
|
<div class="board-links">
|
|
<span class="link-group"><a href="/">domov</a></span>
|
|
<span class="link-group">
|
|
{% for board_link in tcx.boards %}
|
|
<a href="/boards/{{ board_link }}">{{ board_link }}</a>
|
|
{% if !loop.last %}<span class="link-separator"></span>{% endif %}
|
|
{% endfor %}
|
|
</span>
|
|
<span class="link-group"><a href="/overboard">nadnástěnka</a></span>
|
|
<span style="float: right;">
|
|
{% if tcx.logged_in %}
|
|
<span class="link-group"><a href="/logout">odhlásit se</a></span>
|
|
<span class="link-group"><a href="/staff/account">účet</a></span>
|
|
{% else %}
|
|
<span class="link-group"><a href="/login">přihlásit se</a></span>
|
|
{% endif %}
|
|
</span>
|
|
</div>
|
|
<div class="main">
|
|
{% block content %}{% endblock %}
|
|
<hr>
|
|
<div class="footer">
|
|
<a href="https://git.nekrofilie.com/sneedmaster/nekrochan">nekrochan</a> - Projekt <a href="https://nekrofilie.com/">Nekrofilie</a>
|
|
<br>
|
|
<span>Všechny příspěvky na této stránce byly vytvořeny náhodnými uživateli.</span>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|