1
Fork 0
theorangeone.net-legacy/layouts/shortcodes/gist.html

15 lines
382 B
HTML

{{ $id := default (.Get 0) .Page.Params.gist }}
{{ $data := getJSON "https://api.github.com/gists/" $id }}
{{ range $i, $e := $data.files }}
<h5>
<a href="{{ $data.html_url }}#file-{{ $i }}">
<strong>{{ $i }}</strong>
</a>
&nbsp;&nbsp;
<a href="{{ $e.raw_url }}">
<i>View Raw</i>
</a>
</h5>
{{ highlight $e.content $e.language "" }}
{{ end }}