xiv.zone/themes/mytheme/layouts/shortcodes/blurb.html

16 lines
265 B
HTML
Raw Normal View History

2022-04-08 20:41:15 -04:00
{{ $title := .Get "title"}}
{{ $desc := .Get "description" }}
{{ if (.Get "url") }}
<a href='{{.Get "url"}}' class="blurb-button">
{{ else }}
<div class="blurb">
{{ end }}
<h4>{{$title}}</h4>
<p>{{$desc}}</p>
{{ if (.Get "url") }}
</a>
{{ else }}
</div>
{{ end }}