webweav.ing/ui/html/htmx/feed-output.tmpl.html

8 lines
203 B
HTML
Raw Normal View History

2024-03-03 17:53:09 +00:00
{{ range .Feeds }}
2024-03-03 21:05:19 +00:00
<h2>Output</h2>
<button id="copy" onclick="copyToClipboard()">Copy to Clipboard</button>
<textarea readonly="true" cols="80" rows="120" id="feed-output">
2024-03-03 17:53:09 +00:00
{{ . }}
2024-03-03 21:05:19 +00:00
</textarea>
2024-03-03 17:53:09 +00:00
{{ end }}