Files
minne/templates/index/index.html
2024-12-30 23:57:13 +01:00

8 lines
173 B
HTML

{% extends "body_base.html" %}
{% block main %}
{% if user %}
{% include 'index/signed_in_view.html' %}
{% else %}
{% include 'index/hero.html' %}
{% endif %}
{% endblock %}