This repository has been archived on 2024-03-29. You can view files and clone it, but cannot push or open issues or pull requests.
services-panel/layouts/_default/list.html
2023-03-04 19:50:35 +01:00

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 }}