{% extends 'layout.html' %} {% load i18n %} {% block title %}{% trans "Welcome" %}{% endblock %} {% block content %} {% with site_name=site.name %} <div class="modal is-active" role="dialog" aria-modal="true" aria-labelledby="get-started-header"> <div class="modal-background"></div> <div class="modal-card is-fullwidth"> <header class="modal-card-head"> <h1 class="modal-card-title" id="get-started-header"> {% trans "Getting Started" %} </h1> <a href="/" class="delete" aria-label="close"></a> </header> <section class="modal-card-body"> {% block panel %}{% endblock %} </section> <footer class="modal-card-foot is-flex is-justify-content-space-between"> <nav class="breadcrumb mb-0" aria-label="breadcrumbs"> <ul> {% url 'get-started-profile' as url %} <li {% if request.path in url %}class="is-active"{% endif %}> <a {% if request.path in url %}aria-current="page"{% endif %} href="{{ url }}">{% trans "Create profile" %}</a> </li> {% url 'get-started-books' as url %} <li {% if request.path in url %}class="is-active"{% endif %}> <a {% if request.path in url %}aria-current="page"{% endif %} href="{{ url }}">{% trans "Add books" %}</a> </li> {% url 'get-started-users' as url %} <li {% if request.path in url %}class="is-active"{% endif %}> <a {% if request.path in url %}aria-current="page"{% endif %} href="{{ url }}">{% trans "Find friends" %}</a> </li> </ul> </nav> {% if next %} <a href="{% url next %}" class="button"> <span>{% trans "Skip this step" %}</span> <span class="icon icon-arrow-right" aria-hidden="true"></span> </a> {% else %} <a href="/" class="button is-primary">{% trans "Finish" %}</a> {% endif %} </footer> </div> <a href="/" class="modal-close is-large" aria-label="close"></a> </div> {% endwith %} {% endblock %}