1
Fork 0
theorangeone.net-legacy/layouts/shortcodes/gist.html
2017-11-17 20:12:24 +00:00

15 lines
445 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 }}">
<code class="font-weight-bold">{{ $i }}</code>
</a>
&nbsp;&nbsp;
<a href="{{ $e.raw_url }}">
<small class="font-italic">View Raw</small>
</a>
</h5>
{{ highlight $e.content $e.language "linenos=inline" }}
{{ end }}