mirror of
https://github.com/gesquive/slate.git
synced 2024-12-13 17:20:38 +01:00
32207534a2
just in case users have javascript disabled.
12 lines
890 B
HTML
12 lines
890 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 or .Link.bg_color .Link.txt_color }}style='{{ if .Link.bg_color }}background-color:{{ .Link.bg_color | safeCSS }};{{ end }} {{ if .Link.txt_color }}color:{{ .Link.txt_color | safeCSS }}{{end}}'{{ end -}}>
|
|
{{ if .Link.img }}<img class="logo" src="{{ .Link.img }}"></img>{{ else }}{{ .Link.name }}{{ end }}</div>
|
|
<div class="tile-title">{{ .Link.name }}</div>
|
|
</a>
|