scim-docs/themes/Indiiie/layouts/shortcodes/implementation.html
2024-08-29 12:10:19 +02:00

20 lines
No EOL
520 B
HTML

<div class="card flex implementation" data-type="{{ .Get "type" }}">
{{ .Inner | markdownify }}
{{ if .Get "type" }}
<p>
{{ $types := split (.Get "type") " " }}
{{ range $types }}
<span class="type {{ . }}">{{ . }}</span>
{{ end }}
</p>
{{ end }}
{{ if .Get "devs" }}
<p class="devs">Devs: {{ .Get "devs" }}</p>
{{ end }}
{{ if .Get "link" }}
<a class="btn lv1" target="_blank" href="{{ .Get "link" }}">specs ↗</a>
{{ end }}
</div>