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