2017-11-17 21:03:57 +00:00
|
|
|
{{ if .Content }}
|
2017-11-10 14:38:53 +00:00
|
|
|
{{ .Summary | plainify | chomp }}{{ if .Truncated }}…{{ end }}
|
|
|
|
{{ else if .Params.subtitle }}
|
|
|
|
{{ .Params.subtitle | markdownify }}
|
|
|
|
{{ else if .Params.repo }}
|
2017-11-10 23:01:47 +00:00
|
|
|
{{ (getJSON "https://api.github.com/repos/" .Params.repo).description }}
|
2017-11-10 14:38:53 +00:00
|
|
|
{{ else if .Params.gist }}
|
2017-11-10 23:01:47 +00:00
|
|
|
{{ (getJSON "https://api.github.com/gists/" .Params.gist).description }}
|
2017-11-10 14:38:53 +00:00
|
|
|
{{ end }}
|
2017-11-10 09:06:53 +00:00
|
|
|
|