nopaque/web/app/templates/main/news.html.j2

39 lines
1.4 KiB
Plaintext
Raw Normal View History

2020-10-12 11:28:19 +00:00
{% extends "nopaque.html.j2" %}
2020-10-30 14:01:41 +00:00
{% block nav_content %}
{% include 'main/_breadcrumbs.html.j2' %}
{% endblock nav_content %}
2020-10-12 11:28:19 +00:00
{% block page_content %}
2020-10-23 06:51:46 +00:00
<div class="container">
<div class="row">
<div class="col s12">
2020-10-23 08:42:52 +00:00
<h1 id="title">{{ title }}</h1>
2020-10-23 06:51:46 +00:00
</div>
2020-10-23 08:17:14 +00:00
<div class="col s12">
<div class="card" id="nlp-removed-language-support">
<div class="card-content">
<span class="card-title">Natural Language Processing removed language support</span>
<p>Dear users</p>
<br>
<p>Not all language models support all features we utizlize in our NLP service. Thats why we had to drop them, as soon as they meet our requirements we will add them back!</p>
</div>
</div>
</div>
2020-10-23 06:51:46 +00:00
<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>
2020-10-12 11:28:19 +00:00
</div>
</div>
</div>
{% endblock %}