1
Fork 0
theorangeone.net-legacy/layouts/partials/summary_string.html
2017-07-24 09:19:35 +01:00

13 lines
482 B
HTML

{{ if eq .Section "posts" }}
{{ .Summary | truncate .Site.Params.summary_length "..." }}
{{ else }}
{{ 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 }}
{{ else }}
{{ .Summary | truncate .Site.Params.summary_length "..." }}
{{ end }}
{{ end }}