10 lines
342 B
HTML
10 lines
342 B
HTML
{{ $repo := .Get "repo" }}
|
|
{{ $path := .Get "path" }}
|
|
{{ $extension := index (last 1 (split $path ".")) 0 }}
|
|
|
|
{{ $data := getJSON "https://api.github.com/repos/" $repo "/contents/" $path }}
|
|
|
|
{{ $content := $data.content | base64Decode }}
|
|
|
|
{{ highlight $content $extension "" }}
|
|
<p><a href="{{ $data.html_url }}">View {{ $data.name }}</a></p>
|