2017-07-14 22:10:18 +01:00
|
|
|
{{ if .Params.subtitle }}
|
2017-08-05 22:17:15 +01:00
|
|
|
<p>{{ .Params.subtitle | markdownify }}</p>
|
2017-07-14 22:10:18 +01:00
|
|
|
{{ else if .Params.repo }}
|
2017-08-05 22:17:15 +01:00
|
|
|
<p>{{ (getJSON "https://api.github.com/repos/" .Params.repo).description }}</p>
|
2017-07-14 22:10:18 +01:00
|
|
|
{{ else if .Params.gist }}
|
2017-08-05 22:17:15 +01:00
|
|
|
<p>{{ (getJSON "https://api.github.com/gists/" .Params.gist).description }}</p>
|
2017-07-14 22:10:18 +01:00
|
|
|
{{ end }}
|