taler-www

Main taler.net website
Log | Files | Refs | Submodules | README | LICENSE

index.html.j2 (3502B)


      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://wallet.taler.net/" }}" rel="noopener noreferrer" style="display:inline;"><button type="submit" class="btn btn-primary">{{ _("Download Taler Wallet App")}}</button></form>
     42         <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>
     43         <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>
     44         <form action="https://taler-systems.com/" target="_blank" rel="noopener noreferrer" style="display:inline;"><button type="submit" class="btn btn-secondary">{{ _("Get Commercial Support")}}</button></form>
     45         </p>
     46       </div>
     47       <div class="col-lg-4">
     48         <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;" />
     49       </div>
     50     </div>
     51 
     52     <div class="row mt-5">
     53     </div>
     54     <div class="row">
     55       <div class="col-12">
     56         <h2><a href="{{ url_localized('news/index.html')}}">{{ _("News") }}</a></h2>
     57       </div>
     58       {% for item in newsdata[:3] %}
     59       <div class="col-12">
     60         <a href="{{ url_localized('news/' + item['page']) }}" title="{{ item['date']}}">{{ item['date'] }}: {{ item['title'] }}</a>
     61       </div>
     62       {% endfor %}
     63      </div>
     64 
     65   </div>
     66 
     67 
     68 {% endblock body_content %}