1
Fork 0
theorangeone.net-legacy/layouts/projects/single.html
2017-07-04 09:42:44 +01:00

23 lines
932 B
HTML

{{ partial "page_start.html" . }}
<div id="page-wrapper">
<section id="main" class="container">
{{ partial "content.html" . }}
<div class="box">
<ul class="actions fir">
{{ if .Params.download_url }}
<li><a class="button special fit" href="{{ .Params.download_url }}">Download {{ .Title }}</a></li>
{{ end }}
{{ if .Params.repo }}
{{ $data := getJSON "https://api.github.com/repos/" .Params.repo }}
<li><a class="button special fit" href="{{ $data.html_url }}"><i class="fa fa-github fa-lg"></i> View Source</a></li>
{{ end }}
{{ if .Params.gist }}
{{ $data := getJSON "https://api.github.com/gists/" .Params.gist }}
<li><a class="button special fit" href="{{ $data.html_url }}"><i class="fa fa-github fa-lg"></i> View Source</a></li>
{{ end }}
</ul>
</div>
</section>
</div>
{{ partial "page_end.html" . }}