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

16 lines
581 B
HTML

{{ if eq .Section "posts" }}
{{ .Summary | plainify | chomp }}{{ if .Truncated }}…{{ end }}
{{ else if .Params.subtitle }}
{{ .Params.subtitle | markdownify }}
{{ else if .Params.repo }}
{{ if eq .Params.force_summary false }}
{{ (getJSON "https://api.github.com/repos/" .Params.repo).description }}
{{ end }}
{{ else if .Params.gist }}
{{ if eq .Params.force_summary false }}
{{ (getJSON "https://api.github.com/gists/" .Params.gist).description }}
{{ end }}
{{ else }}
{{ .Summary | plainify | chomp }}{{ if .Truncated }}…{{ end }}
{{ end }}