1
Fork 0
theorangeone.net-legacy/layouts/partials/summary.html

13 lines
481 B
HTML
Raw Normal View History

2017-11-10 14:38:53 +00:00
{{ if eq .Section "posts" }}
{{ .Summary | plainify | chomp }}{{ if .Truncated }}…{{ end }}
{{ else if .Params.subtitle }}
{{ .Params.subtitle | markdownify }}
2017-11-10 23:01:47 +00:00
{{ else if .Content }}
{{ .Summary | plainify | chomp }}{{ if .Truncated }}…{{ end }}
2017-11-10 14:38:53 +00:00
{{ 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