shortcodes/link-preview.html

9 lines
184 B
HTML
Raw Normal View History

2023-05-03 20:33:16 -04:00
<a href="{{ .Get 0 }}" class="link-preview">
{{if .Get 3}}
<img src='{{.Get 3}}'>
{{end}}
<div>
<h3>{{ .Get 1 }}</h3>
<p>{{.Get 2 }}</p>
2023-05-03 20:30:33 -04:00
</div>
2023-05-03 20:33:16 -04:00
</a>