tclip/cmd/web/tmpl/showpaste.tmpl
Xe Iaso 21f7d61b42 cmd/web: render posts with Inter, show border around posts
Signed-off-by: Xe Iaso <xe@tailscale.com>
2023-02-24 15:18:32 +00:00

30 lines
817 B
Cheetah

{{template "header" .}}
<script src="/static/js/prism.js"></script>
{{if .UserInfo}}
{{if ne .PasterUserID .UserID}}
<div class="right">{{.PasterDisplayName}} <img style="width:32px;height:32px" src="{{.PasterProfilePicURL}}" /></div>
{{end}}
{{else}}
<div class="right">{{.PasterDisplayName}} <img style="width:32px;height:32px" src="{{.PasterProfilePicURL}}" /></div>
{{end}}
<p>Created at {{.CreatedAt}}</p>
{{if .RawHTML}}
<article>
{{.RawHTML}}
</article>
<br />
{{else}}
<div style="display:inline-block;">
<pre><code class="{{.CSSClass}}">{{.Data}}
</code></pre>
</div>
{{end}}
<a href="/paste/{{.ID}}">Permalink</a> - <a href="/paste/{{.ID}}/dl">Download</a> - <a href="/paste/{{.ID}}/raw">Raw</a>{{if eq .UserID .PasterUserID}} - <a href="/api/delete/{{.ID}}">Delete</a>{{end}}
{{template "footer" .}}