index.html.j2 (3293B)
1 {% extends "common/base.j2" %} 2 {% block subtitle %}{{ _("Home")}}{% endblock subtitle %} 3 {% block body_content %} 4 <main id="maincontent"> 5 <div class="container"> 6 7 <div class="row justify-content-center"> 8 <img alt="{{ _("Taler logo") }}" style="width:40vw; display: block; margin-top: 10px; margin-bottom: 25px" src="{{ url_static('images/logo-2021.svg') }}"> 9 </div> 10 11 <div class="row"> 12 <div class="col-lg-8"> 13 <h2>{{ _("We provide a payment system that makes <span class='tlr'>privacy-friendly</span> online transactions <span class='tlr'>fast and easy</span>.")}}</h2> 14 <p> 15 <ul class="checklist"> 16 <li> 17 <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}"> 18 {{ _("Payments without registration")}} 19 </li> 20 <li> 21 <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}"> 22 {{ _("Data protection by default")}} 23 </li> 24 <li> 25 <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}"> 26 {{ _("Fraud eliminated by design")}} 27 </li> 28 <li> 29 <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}"> 30 {{ _("Not a new currency!")}} 31 </li> 32 <li> 33 <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}"> 34 {{ _("Empowers communities to run their own payment infrastructure")}} 35 </li> 36 <li> 37 <img class="checkmark" height=18 width=18 alt="checkmark" src="{{ url_static('images/checkmark.png') }}"> 38 <a href="https://gnu.org/philosophy/free-sw.html" target="_blank" rel="noopener noreferrer">{{ _("Free Software") }}</a> 39 </li> 40 </ul> 41 <form action="{{ "https://demo.taler.net/" + lang + "/" }}" target="_blank" rel="noopener noreferrer" style="display:inline;"><button type="submit" class="btn btn-primary">{{ _("Try Demo!")}}</button></form> 42 <form action="https://docs.taler.net/" target="_blank" rel="noopener noreferrer" style="display:inline;"><button type="submit" class="btn btn-secondary">{{ _("Read Docs")}}</button></form> 43 <form action="https://taler-systems.com/" target="_blank" rel="noopener noreferrer" style="display:inline;"><button type="submit" class="btn btn-secondary">{{ _("Commercial Support")}}</button></form> 44 </p> 45 </div> 46 <div class="col-lg-4"> 47 <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;" /> 48 </div> 49 </div> 50 51 <div class="row mt-5"> 52 </div> 53 <div class="row"> 54 <div class="col-12"> 55 <h2><a href="{{ url_localized('news/index.html')}}">{{ _("News") }}</a></h2> 56 </div> 57 {% for item in newsdata[:3] %} 58 <div class="col-12"> 59 <a href="{{ url_localized('news/' + item['page']) }}" title="{{ item['date']}}">{{ item['date'] }}: {{ item['title'] }}</a> 60 </div> 61 {% endfor %} 62 </div> 63 64 </div> 65 66 67 {% endblock body_content %}