mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-02 19:52:38 +00:00
9301947b25
git-subtree-dir: themes/gohugoioTheme git-subtree-split: 7dd8a302409a20362e4c610798cc19661b336363
9 lines
332 B
HTML
9 lines
332 B
HTML
{{ range .Params }}
|
|
{{ if eq (substr . 0 1) "@" }}
|
|
<a href="//github.com/{{ substr . 1 }}">{{ . }}</a>
|
|
{{ else if eq (substr . 0 2) "0x" }}
|
|
<a href="//github.com/gohugoio/hugo/commit/{{ substr . 2 }}">{{ substr . 2 6 }}</a>
|
|
{{ else }}
|
|
<a href="//github.com/gohugoio/hugo/issues/{{ . }}">#{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }} |