mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
ec4e6f9df2
git-subtree-dir: docs git-subtree-split: f887bd7b4e3e7c7e76cd63951e5b0d37d8fe0ac7
9 lines
No EOL
326 B
HTML
9 lines
No EOL
326 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/spf13/hugo/commit/{{ substr . 2 }}">{{ substr . 2 6 }}</a>
|
|
{{ else }}
|
|
<a href="//github.com/spf13/hugo/issues/{{ . }}">#{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }} |