2017-03-01 03:23:44 -06:00

19 lines
688 B
HTML

{{$icon := index (split (.Get "file") ".") 1 }}
<div class="code" id="{{.Get "file" | urlize}}">
{{- with .Get "file" -}}
<div class="filename">{{.}}</div>
{{- end -}}
{{with .Get "download"}}
<button class="download-button" title="Download &quot;{{.}}&quot;.">
<i class="icon-download"></i><span class="button-text">Download</span>
</button>
{{end}}
{{ if ne (.Get "copy") "false" }}
<button class="copy-button" title="Copy this code to your clipboard." data-clipboard-snippet>
<i class="icon-clipboard"></i><span class="button-text"> Copy</span>
</button>
{{end}}
<div class="code-copy-content" {{with .Get "download"}}id="{{.}}"{{end}}>
{{- .Inner -}}
</div>
</div>