8 lines
279 B
HTML
8 lines
279 B
HTML
|
{{ if .Params.subtitle }}
|
||
|
{{ .Params.subtitle | markdownify }}
|
||
|
{{ else if .Params.repo }}
|
||
|
{{ (getJSON "https://api.github.com/repos/" .Params.repo).description }}
|
||
|
{{ else if .Params.gist }}
|
||
|
{{ (getJSON "https://api.github.com/gists/" .Params.gist).description }}
|
||
|
{{ end }}
|