15 lines
431 B
Cheetah
15 lines
431 B
Cheetah
|
|
{{ define "content" }}
|
||
|
|
<main class="container">
|
||
|
|
<article>
|
||
|
|
<h3>On-demand summarization</h3>
|
||
|
|
<label>Channel<select id="channel"></select></label>
|
||
|
|
<label>Window<input id="window" value="6h"></label>
|
||
|
|
<label><input type="checkbox" id="push"> Send via Pushover</label>
|
||
|
|
<button id="btn" onclick="summarize()">Summarize</button>
|
||
|
|
<pre id="out"></pre>
|
||
|
|
</article>
|
||
|
|
</main>
|
||
|
|
{{ end }}
|
||
|
|
{{ template "layout.tmpl" . }}
|
||
|
|
|