schliesspendel-site/themes/schliesspendel/layouts/partials/pricing.html

26 lines
668 B
HTML

<section id="pricing" class="content">
<div class="row">
<div class="six columns">
<h5>{{ .Site.Params.Pricing.heading }}</h5>
<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>
<p>{{ .Site.Params.Order.text | safeHTML }}</p>
</div>
</div>
</section>