26 lines
No EOL
787 B
HTML
26 lines
No EOL
787 B
HTML
<div class="space-between card flex implementation {{ if .Get "type"}}{{ .Get "type" }}{{ end }}" data-type="{{ if .Get "type"}}{{ .Get "type" }}{{ end }}">
|
|
<div class="flex">
|
|
{{ .Inner | markdownify }}
|
|
|
|
{{ if .Get "type" }}
|
|
<p>
|
|
{{ $types := split (.Get "type") " " }}
|
|
{{ range $types }}
|
|
<span class="type {{ . }} marked-color">{{ . }}</span>
|
|
{{ end }}
|
|
</p>
|
|
{{ end }}
|
|
|
|
|
|
{{ if .Get "devs" }}
|
|
<p class="devs">Main devs: {{ .Get "devs" }}</p>
|
|
{{ end }}
|
|
</div>
|
|
<div class="flex">
|
|
{{ if .Get "link" }}
|
|
<a class="btn lv1" target="_blank" href="{{ .Get "link" }}">specs ↗</a>
|
|
{{ else }}
|
|
<p class="btn draft marked-color"><em>soon to be released...</em></p>
|
|
{{ end }}
|
|
</div>
|
|
</div> |