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]
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]
heading = "Bestellen"

View File

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