mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
20 lines
502 B
HTML
20 lines
502 B
HTML
|
{% extends "base_plain.html" %}
|
||
|
|
||
|
{% block title %}Welcome{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<section class="markdown">
|
||
|
<img class="banner" src="{{ config.site_banner }}">
|
||
|
{{ content }}
|
||
|
</section>
|
||
|
|
||
|
{% if not request.user.is_authenticated %}
|
||
|
<h1>Recent Posts</h1>
|
||
|
<section class="posts shell">
|
||
|
{% for post in posts %}
|
||
|
{% include "activities/_post.html" %}
|
||
|
{% endfor %}
|
||
|
</section>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|