mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
212 lines
9.1 KiB
Django/Jinja
212 lines
9.1 KiB
Django/Jinja
{% extends "nopaque.html.j2" %}
|
||
|
||
{% set parallax = True %}
|
||
|
||
{% block page_content %}
|
||
<div class="section white">
|
||
<div class="row container">
|
||
<div class="col s12">
|
||
<h2>nopaque</h2>
|
||
<p>From text to data to analysis</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="parallax-container">
|
||
<div class="parallax">
|
||
<img src="{{ url_for('static', filename='images/parallax_lq/01_books_antique_book_old.jpg') }}" alt="">
|
||
</div>
|
||
</div>
|
||
|
||
<div class="section white scrollspy" id="information">
|
||
<div class="row container">
|
||
<div class="col s12 m10">
|
||
<div class="row">
|
||
<div class="col s12">
|
||
<h3>Why you should use nopaque</h3>
|
||
<p>nopaque is a custom-built web application for researchers who want to get out more of their images and texts without having to bother about the technical side of things. You can focus on what really interests you, nopaque does the rest.</p>
|
||
</div>
|
||
|
||
<div class="col s12">
|
||
<div class="row">
|
||
<div class="col s12 m6 l3 center-align">
|
||
<i class="large material-icons" style="color: #ee6e73;">flash_on</i>
|
||
<p>Speeds up your work</p>
|
||
<p class="light">All tools provided by nopaque are carefully selected to provide a complete tool suite without being held up by compatibility issues.</p>
|
||
</div>
|
||
<div class="col s12 m6 l3 center-align">
|
||
<i class="large material-icons" style="color: #ee6e73;">cloud</i>
|
||
<p>Cloud infrastructure</p>
|
||
<p class="light">All computational work is processed within nopaque’s cloud infrastructure. You don't need to install any software. Great, right?</p>
|
||
</div>
|
||
<div class="col s12 m6 l3 center-align">
|
||
<i class="large material-icons" style="color: #ee6e73;">group</i>
|
||
<p>User friendly</p>
|
||
<p class="light">You can start right away without having to read mile-long manuals. All services come with default settings that make it easy for you to just get going. Also great, right?</p>
|
||
</div>
|
||
<div class="col s12 m6 l3 center-align">
|
||
<i class="large material-icons" style="color: #ee6e73;">settings</i>
|
||
<p>Meshing processes</p>
|
||
<p class="light">No matter where you step in, nopaque facilitates and accompanies your research. Its workflow perfectly ties in with your research process.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="col s12 m2">
|
||
<ul class="section table-of-contents">
|
||
<li><a href="#information">Why you should use nopaque</a></li>
|
||
<li><a href="#services">What nopaque can do for you</a></li>
|
||
{% if current_user.is_anonymous %}
|
||
<li><a href="#registration-and-log-in">Registration and log in</a></li>
|
||
{% endif %}
|
||
<li><a href="#workflow">Workflow</a></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="parallax-container">
|
||
<div class="parallax">
|
||
<img src="{{ url_for('static', filename='images/parallax_lq/02_concept_document_focus_letter.jpg') }}" alt="">
|
||
</div>
|
||
</div>
|
||
|
||
<div class="section white scrollspy" id="services">
|
||
<div class="row container">
|
||
<div class="col s12 m10">
|
||
<div class="row">
|
||
<div class="col s12">
|
||
<h3>What nopaque can do for you</h3>
|
||
<p>All services and processes are logically linked and built upon each other. You can follow them step by step or directly choose the one that suits your needs best. And while the process is computed in nopaque’s cloud, you can just keep working.</p>
|
||
</div>
|
||
|
||
<div class="col s12">
|
||
<br class="hide-on-small-only">
|
||
<div class="row">
|
||
<div class="col s12 m6 l3 center-align">
|
||
<i class="large material-icons" style="color: #ee6e73;">burst_mode</i>
|
||
<p>File setup</p>
|
||
<p class="light">Digital copies of text based research data (books, letters, etc.) often comprise various files and formats. nopaque converts and merges those files to facilitate further processing and the application of other services.</p>
|
||
</div>
|
||
<div class="col s12 m6 l3 center-align">
|
||
<i class="large material-icons" style="color: #ee6e73;">find_in_page</i>
|
||
<p>Optical Character Recognition</p>
|
||
<p class="light">nopaque converts your image data – like photos or scans – into text data through OCR making it machine readable. This step enables you to proceed with further computational analysis of your documents.</p>
|
||
</div>
|
||
<div class="col s12 m6 l3 center-align">
|
||
<i class="large material-icons" style="color: #ee6e73;">format_textdirection_l_to_r</i>
|
||
<p>Natural Language Processing</p>
|
||
<p class="light">By means of computational linguistic data processing (tokenization, lemmatization, part-of-speech tagging and named-entity recognition) nopaque extracts additional information from your text.</p>
|
||
</div>
|
||
<div class="col s12 m6 l3 center-align">
|
||
<i class="large material-icons" style="color: #ee6e73;">search</i>
|
||
<p>Corpus analysis</p>
|
||
<p class="light">nopaque lets you create and upload as many text corpora as you want. It makes use of CQP Query Language, which allows for complex search requests with the aid of metadata and NLP tags.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="col s12 m2">
|
||
<ul class="section table-of-contents">
|
||
<li><a href="#information">Why you should use nopaque</a></li>
|
||
<li><a href="#services">What nopaque can do for you</a></li>
|
||
{% if current_user.is_anonymous %}
|
||
<li><a href="#registration-and-log-in">Registration and log in</a></li>
|
||
{% endif %}
|
||
<li><a href="#workflow">Workflow</a></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="parallax-container">
|
||
<div class="parallax">
|
||
<img src="{{ url_for('static', filename='images/parallax_lq/03_text_data_wide.png') }}" alt="">
|
||
</div>
|
||
</div>
|
||
|
||
{% if current_user.is_anonymous %}
|
||
<div class="section white scrollspy" id="registration-and-log-in">
|
||
<div class="row container">
|
||
<div class="col s12 m10">
|
||
<div class="row">
|
||
<div class="col s12 m4">
|
||
<h3>Registration and Log in</h3>
|
||
<p>Want to boost your research and get going? nopaque is free and no download is needed. Register now!</p>
|
||
<a class="btn waves-effect waves-light" href="{{ url_for('auth.register') }}"><i class="material-icons left">person_add</i>Register</a>
|
||
</div>
|
||
|
||
<div class="col s12 m8">
|
||
<br class="hide-on-small-only">
|
||
<div class="card">
|
||
<form method="POST">
|
||
<div class="card-content">
|
||
<span class="card-title">Log in</span>
|
||
{{ login_form.hidden_tag() }}
|
||
{{ M.render_field(login_form.user, material_icon='person') }}
|
||
{{ M.render_field(login_form.password, material_icon='vpn_key') }}
|
||
<div class="row" style="margin-bottom: 0;">
|
||
<div class="col s6 left-align">
|
||
<a href="{{ url_for('auth.reset_password_request') }}">Forgot your password?</a>
|
||
</div>
|
||
<div class="col s6 right-align">
|
||
{{ M.render_field(login_form.remember_me) }}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="card-action right-align">
|
||
{{ M.render_field(login_form.submit, material_icon='send') }}
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="col s12 m2">
|
||
<ul class="section table-of-contents">
|
||
<li><a href="#information">Why you should use nopaque</a></li>
|
||
<li><a href="#services">What nopaque can do for you</a></li>
|
||
{% if current_user.is_anonymous %}
|
||
<li><a href="#registration-and-log-in">Registration and log in</a></li>
|
||
{% endif %}
|
||
<li><a href="#workflow">Workflow</a></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="parallax-container">
|
||
<div class="parallax">
|
||
<img src="{{ url_for('static', filename='images/parallax_lq/04_german_text_book_paper.jpg') }}" alt="">
|
||
</div>
|
||
</div>
|
||
{% endif %}
|
||
|
||
<div class="section white scrollspy" id="workflow">
|
||
<div class="row container">
|
||
<div class="col s12 m10">
|
||
<h3>Workflow</h3>
|
||
<h4>Coming soon...</h4>
|
||
</div>
|
||
<div class="col s12 m2">
|
||
<ul class="section table-of-contents">
|
||
<li><a href="#information">Why you should use nopaque</a></li>
|
||
<li><a href="#services">What nopaque can do for you</a></li>
|
||
{% if current_user.is_anonymous %}
|
||
<li><a href="#registration-and-log-in">Registration and log in</a></li>
|
||
{% endif %}
|
||
<li><a href="#workflow">Workflow</a></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="parallax-container">
|
||
<div class="parallax">
|
||
<img src="{{ url_for('static', filename='images/parallax_lq/05_chapter_book_text_tale.jpg') }}" alt="">
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|