summaryrefslogtreecommitdiff
path: root/template/index.html.j2
blob: a7a291f57ef0491e880d7d50b31a116713a76acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{% extends "common/base.j2" %}
{% block body_content %}
  <div class="container">

    <div class="row justify-content-center">
      <div style="width:40vw;" >
        <img alt="{{ _("Taler logo") }}" style="width:100%; height: auto; display: block" src="{{ url_static('images/logo-2021.svg') }}">
      </div>
    </div>

    <div class="row mt-5">
    </div>

    <div class="row">
      <div class="col-lg-8">
        <h2>{{ _("We provide a payment system that makes <span class='tlr'>privacy-friendly</span> online transactions <span class='tlr'>fast and easy</span>.")}}</h2>
        <p>
        <ul class="checklist">
          <li>
            <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}">
            {{ _("Payments without registration")}}
          </li>
          <li>
            <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}">
            {{ _("Data protection by default")}}
          </li>
          <li>
            <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}">
            {{ _("Fraud eliminated by design")}}
          </li>
          <li>
            <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}">
            {{ _("Not a new currency!")}}
          </li>
          <li>
            <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}">
            {{ _("Empowers communities to run their own payment infrastructure")}}
          </li>
          <li>
            <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}">
            <a href="https://gnu.org/philosophy/free-sw.html">{{ _("Free Software") }}</a>
          </li>
        </ul>
        <form action="{{ "https://demo.taler.net/" + lang + "/" }}" style="display:inline;"><button type="submit" class="btn btn-primary">{{ _("Try Demo!")}}</button></form>        <form action="https://docs.taler.net/" style="display:inline;"><button type="submit" class="btn btn-secondary">{{ _("Read Docs")}}</button></form>
        </p>
      </div>
      <div class="col-lg-4">
        <img class="img-fluid" alt="mobile phone as wallet with cash" src="{{ url_static('images/stock1s.jpg') }}" width=439 height=411 style="border-radius: 1cm;" />
      </div>
    </div>

    <div class="row mt-5">
    </div>
    <div class="row">
      <div class="col-12">
        <h2><a href="{{ url_localized('news/index.html')}}">{{ _("News") }}</a></h2>
      </div>
      {% for item in newsdata[:3] %}
      <div class="col-12">
        <a href="{{ url_localized(item['page']) }}" title="{{ item['date']}}">{{ item['date'] }}: {{ item['title'] }}</a>
      </div>
      {% endfor %}
     </div>

  </div>


{% endblock body_content %}