taler-merchant-demos

Python-based Frontends for the Demonstration Web site
Log | Files | Refs | README | LICENSE

landing.gohtml (2014B)


      1 {{define "content"}}
      2   <div class="step-list">
      3   <article class="step-card">
      4     <h2>{{tr .Lang "Step 1: Install the wallet"}}</h2>
      5     <p>{{tr .Lang "Install the Taler wallet in your browser, then return here."}}</p>
      6     <div class="action-row"><a class="button button-secondary" href="https://wallet.taler.net/">{{tr .Lang "Install Taler wallet"}}{{template "link-icon"}}</a></div>
      7     <p class="helper-text">{{tr .Lang "The wallet can open automatically when a site requests a Taler payment. It does not share your browsing history."}}</p>
      8   </article>
      9   <article class="step-card">
     10     <h2>{{tr .Lang "Step 2: Get demo coins"}}</h2>
     11     <p>{{trf .Lang "Create a demo bank account to receive 100 {currency}, then withdraw the coins to your wallet." "currency" .Content.Currency}}</p>
     12     <div class="action-row"><a class="button button-secondary" href="{{.Content.BankRegisterURL}}">{{tr .Lang "Demo bank"}}{{template "link-icon"}}</a></div>
     13     <p class="helper-text">{{tr .Lang "Check your balance in your Taler wallet."}}</p>
     14   </article>
     15   <article class="step-card">
     16     <h2>{{tr .Lang "Step 3: Spend your coins"}}</h2>
     17     <p>{{trfHTML .Lang "Buy a chapter from Richard Stallman&#39;s <cite>Free Software, Free Society</cite>, or donate to a Free Software project. The book is also available free from the <a href=\"{fsf}\">FSF</a>." "fsf" "https://www.fsf.org/"}}</p>
     18     <div class="action-row">
     19       <a class="button button-secondary" href="{{.Content.BlogURL}}">{{tr .Lang "Essay Shop"}}{{template "link-icon"}}</a>
     20       <a class="button button-secondary" href="{{.Content.DonationsURL}}">{{tr .Lang "Donations"}}{{template "link-icon"}}</a>
     21     </div>
     22   </article>
     23   <article class="step-card">
     24     <h2>{{tr .Lang "Step 4: Send feedback"}}</h2>
     25     <p>{{tr .Lang "Questions and feedback are welcome."}}</p>
     26     <div class="action-row"><a class="button button-secondary" href="mailto:demo-feedback@taler.net">{{tr .Lang "Contact us"}}{{template "link-icon"}}</a></div>
     27   </article>
     28   </div>
     29 {{end}}