Closed johnatasjmo closed 6 years ago
If you set linktitle
and link
at toml like this
+++
linktitle = "Github"
link = "https://github.com/peaceiris"
+++
You will get the link to GitHub.
This is defined at layouts/itemized/header.html
{{ if isset .Params "link" }}
<a href="{{ .Params.link }}" target="_blank">{{ .Params.linktitle }}</a>
{{ end }}
Noted. To be added to the Wiki when available.
What is the expected behavior of the value
link =
in itemized content type?