lostplaces-backend/django_lostplaces/lostplaces/templates/partials/welcome.html

22 lines
695 B
HTML
Raw Normal View History

2020-10-01 23:05:34 +02:00
{% load i18n %}
<header class="LP-TextSection__Headline">
<h1 class="LP-Headline">{% trans 'Start' %}</h1>
</header>
<div class="LP-TextSection__Text">
<p class="LP-Paragraph">{% trans 'Welcome to our Urban Exploration community catalogue,' %}
2020-09-03 00:17:42 +02:00
{% if user.is_authenticated %}
{{ user.username }}
{% else %}
{% trans 'explorer' %}
2020-09-03 00:17:42 +02:00
{% endif %}
!
</p>
<p class="LP-Paragraph">
{% trans 'We strictly follow our' %}
<a class="LP-Link" href="{% url 'flatpage' slug='codex' %}"><span class="LP-Link__Text">{% trans 'UrBex codex' %}</span></a>
{% trans 'and expect you to do so, too.' %}'
2020-09-03 00:17:42 +02:00
</p>
</div>