mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
28 lines
961 B
Django/Jinja
28 lines
961 B
Django/Jinja
{% extends "nopaque.html.j2" %}
|
|
|
|
{% block nav_content %}
|
|
{% include 'main/_breadcrumbs.html.j2' %}
|
|
{% endblock nav_content %}
|
|
|
|
{% block page_content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<h1 id="title">{{ title }}</h1>
|
|
</div>
|
|
|
|
<div class="col s12">
|
|
<div class="card" id="beta-launch">
|
|
<div class="card-content">
|
|
<span class="card-title">nopaque's beta launch</span>
|
|
<p>Dear users</p>
|
|
<br>
|
|
<p>A few days ago we went live with nopaque. Right now nopaque is still in its Beta phase. So some bugs are to be expected. If you encounter any bugs or some feature is not working as expected please send as an email using the feedback button at the botton of the page in the footer!</p>
|
|
<p>We are happy to help you with any issues and will use the feedback to fix all mentioned bugs!</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|