aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/webtry/templates/recent.html
blob: 96be7141cdbbe8148bb66ee2b49d02d88cd5b755 (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
<!DOCTYPE html>
<html>
<head>
    <title>Recent SkFiddles</title>
    <meta charset='utf-8' />
    <link rel="stylesheet" href="/css/" type="text/css" media="screen">
</head>
<body>
  {{template "titlebar.html"}}
  <section id=content>
  <h1>Recent Activity</h1>
  <section>
    {{range .Tries}}
      <div class=tries>
        <h2><a href="/c/{{.Hash}}">{{.CreateTS}}</a></h2>
        <a href="/c/{{.Hash}}">
          <img width=128 height=128 src="/i/{{.Hash}}.png">
        </a>
      </div>
    {{end}}
  </section>
  </section>
</body>
</html>