moviewyrm/bookwyrm/templates/get_started/layout.html

36 lines
1.1 KiB
HTML
Raw Normal View History

2021-03-31 20:59:33 +00:00
{% extends 'layout.html' %}
{% load i18n %}
{% block title %}{% trans "Welcome" %}{% endblock %}
{% block content %}
{% with site_name=site.name %}
2021-04-01 15:02:42 +00:00
<div class="modal is-active" role="dialog" aria-modal="true" aria-labelledby="get-started-header">
2021-03-31 20:59:33 +00:00
<div class="modal-background"></div>
<div class="modal-card is-fullwidth">
<header class="modal-card-head">
2021-04-01 15:02:42 +00:00
<h1 class="modal-card-title" id="get-started-header">
2021-03-31 20:59:33 +00:00
{% trans "Getting Started" %}
</h1>
<button class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body">
{% block panel %}{% endblock %}
</section>
<footer class="modal-card-foot is-flex is-justify-content-flex-end">
{% if next %}
<a href="{% url next %}" class="button">
2021-03-31 20:59:33 +00:00
<span>{% trans "Skip this step" %}</span>
<span class="icon icon-arrow-right" aria-hidden="true"></span>
</a>
{% endif %}
2021-03-31 20:59:33 +00:00
</footer>
</div>
<a href="/" class="modal-close is-large" aria-label="close"></a>
</div>
{% endwith %}
{% endblock %}