mirror of
https://github.com/perstarkse/minne.git
synced 2026-02-25 09:34:50 +01:00
11 lines
238 B
HTML
11 lines
238 B
HTML
{% extends "body_base.html" %}
|
|
{% block main %}
|
|
{% if user %}
|
|
{% include 'index/signed_in/base.html' %}
|
|
{% else %}
|
|
{% include 'index/hero.html' %}
|
|
{% if not gdpr_accepted %}
|
|
{% include "gdpr.html" %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endblock %} |