factor/apps/furnace-pastebin/show-paste.fhtml

16 lines
440 B
Plaintext
Raw Normal View History

2006-10-15 23:59:04 -04:00
<% USING: namespaces io furnace sequences ; %>
<h1>Paste: <% "summary" get write %></h1>
2006-09-13 00:48:04 -04:00
<table>
<tr><th>Paste by:</th><td><% "author" get write %></td></tr>
2006-10-15 23:59:04 -04:00
<tr><th>Channel:</th><td><% "channel" get write %></td></tr>
2006-09-13 00:48:04 -04:00
<tr><th>Created:</th><td><% "date" get write %></td></tr>
</table>
<pre><% "contents" get write %></pre>
2006-10-15 23:59:04 -04:00
<% "annotations" get [ "annotation" render-template ] each %>
<% model get "annotate-paste" render-template %>