itsblue-website/themes/quark-hugo/layouts/partials/modular/pricing.html

38 lines
1.3 KiB
HTML

<section id="body-wrapper" class="section blog-listing">
<section class="container {{ site.Params.GridSize }}">
<div class="frame-box">
{{ .content | markdownify }}
<br>
{{ $containerType := default "panel" .containerType }}
<div class="columns">
{{ range .products }}
<div id="item" class="column col-3 col-md-6 col-sm-12" style="display: flex;" >
<div class="{{ $containerType }}">
{{ $ctx := . }} {{ with .image }}
<div class="{{ $containerType }}-image">
<a href="{{ $ctx.RelPermalink }}">
<img alt="" src="{{ . | relURL }}" />
</a>
</div>
{{ end }}
<div class="{{ $containerType }}-header text-center">
<div class="{{ $containerType }}-title">
<h2>{{.price}}</h2>
</div>
</div>
<div class="{{ $containerType }}-body">
<div class="{{ $containerType }}-header">
<div class="{{ $containerType }}-title h5">{{ .name }}</div>
{{ with .subtitle }}
<div class="{{ $containerType }}-subtitle text-gray">{{ . }}</div>
{{ end }}
</div>
</div>
</div>
</div>
{{ end }}
</div>
</div>
</section>
</section>