Revert "add new prices"

This reverts commit 8932f58e62.
master
Simon Bruder 2018-10-14 12:40:48 +00:00
parent 8932f58e62
commit 628b596347
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
2 changed files with 30 additions and 7 deletions

View File

@ -66,7 +66,22 @@ text = "Viele Menschen mit Behinderung haben Schwierigkeiten sei es auf G
[params.pricing] [params.pricing]
heading = "Preise" heading = "Preise"
price = "5,95 €"
[[params.pricing.row]]
quantity = "bis 10"
price = "4,95 €"
[[params.pricing.row]]
quantity = "11 bis 20"
price = "4,00 €"
[[params.pricing.row]]
quantity = "21 bis 50"
price = "3,50 €"
[[params.pricing.row]]
quantity = "über 50"
price = "3,00 €"
[params.order] [params.order]
heading = "Bestellen" heading = "Bestellen"

View File

@ -2,12 +2,20 @@
<div class="row"> <div class="row">
<div class="six columns"> <div class="six columns">
<h5>{{ .Site.Params.Pricing.heading }}</h5> <h5>{{ .Site.Params.Pricing.heading }}</h5>
<p> <table class="u-full-width">
Ein Schließpendel kostet <thead>
<strong>{{ .Site.Params.Pricing.price }}</strong>. Bei größeren <tr>
Abnehmemengen, fordern Sie bitte einen Kostenvoranschlag an, um <th>Abnahmemenge</th>
günstigere Konditionen zu erhalten. <th>Preis pro Stück</th>
</p> </tr>
{{ range .Site.Params.Pricing.row }}
<tr>
<td>{{ .quantity }}</td>
<td>{{ .price }}</td>
</tr>
{{ end }}
</thead>
</table>
</div> </div>
<div class="six columns"> <div class="six columns">
<h5>{{ .Site.Params.Order.heading }}</h5> <h5>{{ .Site.Params.Order.heading }}</h5>