summaryrefslogtreecommitdiff
path: root/template/index.html.j2
blob: f3b82e9ae1784340499f987fae4f0cb973d86874 (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
{% extends "common/base.j2" %}
{% block body_content %}
  <div class="container">

    <div class="row justify-content-center">
      <img style="width:80vw" src="{{ url_static('images/logo-2020.jpg') }}">
    </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" src="{{ url_static('images/checkmark.png') }}">
            {{ _("Payments without registration")}}
          </li>
          <li>
            <img class="checkmark" src="{{ url_static('images/checkmark.png') }}">
            {{ _("Data protection by default")}}
          </li>
          <li>
            <img class="checkmark" src="{{ url_static('images/checkmark.png') }}">
            {{ _("Fraud eliminated by design")}}
          </li>
          <li>
            <img class="checkmark" src="{{ url_static('images/checkmark.png') }}">
            {{ _("Not a new currency!")}}
          </li>
          <li>
            <img class="checkmark" src="{{ url_static('images/checkmark.png') }}">
            {{ _("Empowers communities to run their own payment infrastructure")}}
          </li>
          <li>
            <img class="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/" 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" src="{{ url_static('images/stock1s.jpg') }}" 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="news/{{ item['page'] }}" title="{{ item['date']}}">{{ item['date'] }}: {{ item['title'] }}</a>
      </div>
      {% endfor %}
     </div>

  </div>


{% endblock body_content %}