15 lines
382 B
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>
|
|
|
|
<a href="{{ $e.raw_url }}">
|
|
<i>View Raw</i>
|
|
</a>
|
|
</h5>
|
|
{{ highlight $e.content $e.language "" }}
|
|
{{ end }}
|