20 lines
520 B
HTML
20 lines
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>
|