Home | History | Annotate | Download | only in templates
      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4     <title>Recent SkFiddles</title>
      5     <meta charset='utf-8' />
      6     {{template "headercommon.html" .}}
      7 </head>
      8 <body>
      9   {{template "titlebar.html" .}}
     10   <section id=content>
     11     <h1>Recent Activity</h1>
     12     <section>
     13       {{range .Tries}}
     14         <div class=tries>
     15           <h2><a href="/c/{{.Hash}}">{{.CreateTS}}</a></h2>
     16           <a href="/c/{{.Hash}}">
     17             <img width=128 height=128 src="/i/{{.Hash}}.png">
     18           </a>
     19         </div>
     20       {{end}}
     21     </section>
     22   </section>
     23   {{template "footercommon.html" .}}
     24 </body>
     25 </html>
     26