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

16 lines
414 B
HTML
Raw Normal View History

2023-02-20 14:44:59 +00:00
{{ define "main" }}
{{ .Content }}
2023-02-23 21:40:16 +00:00
{{ range $.Site.Params.Service }}
2023-02-25 18:42:20 +00:00
<fieldset class="settingsBox">
<legend>{{ .name }}</legend>
<section class="content">
<section class="top">
2023-03-04 18:50:35 +00:00
<img src="/home/{{ .icon }}" alt="">
2023-02-25 18:42:20 +00:00
<a href="{{ .hyperlink }}">{{ .linktext }}</a>
</section>
<p>{{ .summary }}</p>
</section>
</fieldset>
2023-02-23 21:40:16 +00:00
{{ end }}
2023-02-20 14:44:59 +00:00
{{ end }}