16 lines
414 B
HTML
16 lines
414 B
HTML
{{ define "main" }}
|
|
{{ .Content }}
|
|
{{ range $.Site.Params.Service }}
|
|
<fieldset class="settingsBox">
|
|
<legend>{{ .name }}</legend>
|
|
<section class="content">
|
|
<section class="top">
|
|
<img src="/home/{{ .icon }}" alt="">
|
|
<a href="{{ .hyperlink }}">{{ .linktext }}</a>
|
|
</section>
|
|
<p>{{ .summary }}</p>
|
|
</section>
|
|
</fieldset>
|
|
{{ end }}
|
|
{{ end }}
|