2022-12-22 21:06:35 +00:00
|
|
|
{% 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 %}
|
2022-12-22 21:06:35 +00:00
|
|
|
<h1>Recent Posts</h1>
|
|
|
|
<section class="posts shell">
|
|
|
|
{% for post in posts %}
|
|
|
|
{% include "activities/_post.html" %}
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|