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.
17 lines
546 B
Cheetah
17 lines
546 B
Cheetah
{{define "title"}}Snippet #{{.Snippet.ID}}{{end}}
|
|
|
|
{{define "main"}}
|
|
<!-- This is a comment that will be stripped out by html/template -->
|
|
<div class="snippet">
|
|
<div class="metadata">
|
|
<strong>{{.Snippet.Title.String }}</strong>
|
|
<span>#{{.Snippet.ID}}</span>
|
|
</div>
|
|
<pre><code>{{.Snippet.Content.String }}</code></pre>
|
|
<div class="metadata">
|
|
<time>Created: {{.Snippet.CreatedAt}}</time>
|
|
<time>Expires: {{.Snippet.ExpiresAt}}</time>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
|