2017-11-05 11:57:28 +01:00
|
|
|
<section id="pricing" class="content">
|
|
|
|
<div class="row">
|
|
|
|
<div class="six columns">
|
2017-11-05 12:22:59 +01:00
|
|
|
<h5>{{ .Site.Params.Pricing.heading }}</h5>
|
2018-10-14 14:40:48 +02:00
|
|
|
<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>
|
2017-11-05 11:57:28 +01:00
|
|
|
</div>
|
|
|
|
<div class="six columns">
|
|
|
|
<h5>{{ .Site.Params.Order.heading }}</h5>
|
|
|
|
<p>{{ .Site.Params.Order.text | safeHTML }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|