mirror of
https://github.com/gesquive/slate.git
synced 2024-12-15 02:00:40 +01:00
11 lines
538 B
HTML
11 lines
538 B
HTML
|
<a class="tile tile-link" href="{{ .url }}" data-groups='{{ if .tags }}{{ delimit .tags "," }}{{ end }}'>
|
||
|
<div class="tile-box"
|
||
|
data-title='{{ .name }}'
|
||
|
data-url='{{ .url }}'
|
||
|
{{ if .bg_color }}data-bg-color='{{ .bg_color }}'{{ end -}}
|
||
|
{{ if .txt_color }}data-txt-color='{{ .txt_color }}'{{ end -}}
|
||
|
{{ if .img }}data-img='{{ .img }}'{{ end -}}>
|
||
|
{{ if .img }}<img class="logo" src="{{ .img }}"></img>{{ else }}{{ .name }}{{ end }}</div>
|
||
|
<div class="tile-title">{{ .name }}</div>
|
||
|
</a>
|