personal-blog/layouts/shortcodes/newtab.html

8 lines
179 B
HTML
Raw Normal View History

2022-01-05 13:04:56 +00:00
<a href='{{ .Site.BaseURL }}{{ .Get "url" }}' target="_blank">
{{ with .Get "title" }}
{{.}}
{{else}}
{{ .Site.BaseURL }}{{ .Get "url" }}
{{end}}
2021-11-27 14:09:56 +00:00
</a>