summaryrefslogtreecommitdiff
path: root/src/data/templates/quotes.hbs
blob: 71732abdbc5c681fc921e47e4974bfb3512b3a8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{#*inline "heading"}}
                      Sortér etter <a href="quotes.jsp?order=date">dato</a> | <a href="quotes.jsp?order=score">score</a>
{{/inline}}

{{#*inline "page"}}
{{#each quotes}}

<br>
<a href="/view_quote?id={{id}}">#{{id}}</a>, lagt til av {{author}}<br>
Dato: {{date}}, Score: 
<span id="v{{id}}">
{{score}} (fra {{votes}}), Vote: <font size="-1">
  <a href="javascript:vote({{id}},1)">1</a>
  <a href="javascript:vote({{id}},2)">2</a>
  <a href="javascript:vote({{id}},3)">3</a>
  <a href="javascript:vote({{id}},4)">4</a>
  <a href="javascript:vote({{id}},5)">5</a></font></span>,

<form method="post" style="display: inline;"action="http://www.vidarholen.net/contents/rage/index.php"><input type="hidden" name="irc" value="{{content}}"/><input type="submit" class="ragebutton" value="Rage it"/></form><br>
<br> <br>

{{content}}
<br>
<hr>
{{/each}}
{{/inline}}

{{~> base~}}