You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
562 B
Cheetah
19 lines
562 B
Cheetah
{{define "title"}}Snippet #{{.Snippet.ID}}{{end}}
|
|
|
|
{{define "main"}}
|
|
{{ with .Snippet }}
|
|
<!-- This is a comment that will be stripped out by html/template -->
|
|
<div class="snippet">
|
|
<div class="metadata">
|
|
<strong>{{.Title.String }}</strong>
|
|
<span>#{{.ID}}</span>
|
|
</div>
|
|
<pre><code>{{.Content.String }}</code></pre>
|
|
<div class="metadata">
|
|
<time>Created: {{ humanDate .CreatedAt}}</time>
|
|
<time>Expires: {{ humanDate .ExpiresAt}}</time>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
{{end}}
|
|
|