116 lines
5.1 KiB
Django/Jinja
116 lines
5.1 KiB
Django/Jinja
{% extends "base_www.jinja" %}
|
|
|
|
{% block head_title %}{{ l10n("head.title", "about", user_lang) }}{% endblock %}
|
|
{% block head_description %}{{ l10n("head.description", "about", user_lang) }}{% endblock %}
|
|
|
|
{% block header_title %}
|
|
<i class="fad fa-user t-size-16 mr-s t-muted"></i>{{ l10n("header.title", "about", user_lang) }}
|
|
{% endblock %}
|
|
|
|
{% block main_content %}
|
|
|
|
<section class="mt-l mt-0-if-first">
|
|
{{ render_h1(l10n("intro.title", "about", user_lang)) }}
|
|
<div class="content-spacer">
|
|
<img src="/resources/NibblePoker/images/about/profile-pic.jpg"
|
|
alt="" class="r-r img-profile f-right m-xs ml-xxs"
|
|
draggable="false">
|
|
{{ render_paragraph(l10n("intro.text.p1.l1", "about", user_lang)) }}
|
|
{{ render_paragraph(l10n("intro.text.p3.l1", "about", user_lang) + "<br>" + l10n("intro.text.p3.l2", "about", user_lang)) }}
|
|
</div>
|
|
</section>
|
|
|
|
<section class="mt-l mt-0-if-first">
|
|
{{ render_h1(l10n("future.title", "about", user_lang)) }}
|
|
<div class="content-spacer">
|
|
{{ render_paragraph(l10n("future.text.p1.l1", "about", user_lang) + "<br>" + l10n("future.text.p1.l2", "about", user_lang)) }}
|
|
{{ render_paragraph(l10n("future.text.p2.l1", "about", user_lang)) }}
|
|
{{ render_paragraph(l10n("future.text.p3.l1", "about", user_lang)) }}
|
|
</div>
|
|
</section>
|
|
|
|
<section class="mt-l mt-0-if-first">
|
|
{{ render_h1(l10n("financing.title", "about", user_lang)) }}
|
|
<div class="content-spacer">
|
|
{{ render_paragraph(l10n("financing.text.p1.l1", "about", user_lang) + "<br>" + l10n("financing.text.p1.l2", "about", user_lang)) }}
|
|
{{ render_paragraph(l10n("financing.text.p2.l1", "about", user_lang)) }}
|
|
{{ render_paragraph(l10n("financing.text.p3.l1", "about", user_lang) + "<br>" + l10n("financing.text.p3.l2", "about", user_lang)) }}
|
|
</div>
|
|
</section>
|
|
|
|
<section class="mt-l mt-0-if-first">
|
|
<div class="grid grid-col-2 grid-col-medium-1 grid-gap-m">
|
|
<div>
|
|
<table class="table-stylish table-p-xs border r-l w-full">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ l10n("financing.part.service", "about", user_lang) }}</th>
|
|
<th>{{ l10n("financing.part.cost.yearly", "about", user_lang) }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{{ l10n("financing.part.domain.lu", "about", user_lang) }}</td>
|
|
<td>19,99 €</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ l10n("financing.part.domain.com", "about", user_lang) }}</td>
|
|
<td>13,49 €</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ l10n("financing.part.proxy.europe", "about", user_lang) }}</td>
|
|
<td>348 PLN / ±81,84 €</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ l10n("financing.part.proxy.america", "about", user_lang) }}</td>
|
|
<td>13,00 €</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ l10n("financing.part.electricity", "about", user_lang) }}</td>
|
|
<td>±32,00 €</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b class="f-right">{{ l10n("financing.part.cost.yearly.total", "about", user_lang) }}:</b></td>
|
|
<td>±160,32 €</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div>
|
|
<table class="table-stylish table-p-xs border r-l w-full">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ l10n("financing.part.equipment", "about", user_lang) }}</th>
|
|
<th>{{ l10n("financing.part.cost", "about", user_lang) }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{{ l10n("financing.part.nanopir4s", "about", user_lang) }}</td>
|
|
<td>±80,00 €</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ l10n("financing.part.storage", "about", user_lang) }}</td>
|
|
<td>±10,00 €</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b class="f-right">{{ l10n("financing.part.cost.total", "about", user_lang) }}:</b></td>
|
|
<td>±90,00 €
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="mt-xs ml-s t-super-muted t-center">
|
|
{{ l10n("financing.text.isp", "about", user_lang) }}
|
|
</p>
|
|
</section>
|
|
|
|
{% endblock %}
|
|
|
|
{% block extra_scripts %}
|
|
<script src="{{ url_for("static", filename="resources/NibblePoker/js/nibblepoker-default.min.js") }}"></script>
|
|
{% endblock %}
|