diff options
author | mms <git@sapka.me> | 2024-11-23 23:47:51 +0100 |
---|---|---|
committer | mms <git@sapka.me> | 2024-11-23 23:47:51 +0100 |
commit | 95e0330c60e67128950f0b8e135488217a54923b (patch) | |
tree | 69407a5a9c31c8f31575ac85f9201c9baf9683aa /layouts | |
parent | 65ee10d360ceab1768b6650123976bdc9585f56e (diff) |
feat: video warn
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/shortcodes/links.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/layouts/shortcodes/links.html b/layouts/shortcodes/links.html index 6d40dae..4c87b41 100644 --- a/layouts/shortcodes/links.html +++ b/layouts/shortcodes/links.html @@ -37,8 +37,12 @@ {{ end }} </td> <td style="padding-bottom: 10px"> - <a href="{{.Url}}"> - <b>{{ .Title }}</b><br> + <a href="{{.Url}}"> <b>{{ .Title }}</b></a> + {{ if .Video }} + (videos on {{.Video}}) + {{ end }} + + <br> {{ .Description }} </a> </td> |