coopcloud.tech/themes/cloud.autonomic.zone/layouts/partials/index/underline_points.html

20 lines
633 B
HTML

<section class="section">
<div class="container content">
<h1 class="is-uppercase">{{ .title }}</h1>
<hr class="hr-header">
{{ range $index, $item := .data }}
{{/* Don't place <hr> if it is the first in the list */}}
{{ if gt $index 0 }}<hr>{{ end }}
<div class="columns">
<div class="column is-one-quarter">
<h3 class="is-uppercase is-size-3">{{ $item.left }}</h2>
</div>
<div class="column is-half">
<div class="is-size-4">
<p class="block">{{ $item.right }}</p>
</div>
</div>
</div>
{{ end }}
</div>
</section>