takahe/templates/about.html

20 wiersze
534 B
HTML
Czysty Zwykły widok Historia

{% extends "base_plain.html" %}
{% block title %}Welcome{% endblock %}
{% block content %}
<section class="markdown">
<img class="banner" src="{{ config.site_banner }}">
{{ content }}
</section>
2022-12-22 21:16:08 +00:00
{% if not request.user.is_authenticated and config.site_frontpage_posts %}
<h1>Recent Posts</h1>
<section class="posts shell">
{% for post in posts %}
{% include "activities/_post.html" %}
{% endfor %}
</section>
{% endif %}
{% endblock %}