Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>Recent SkFiddles</title> | |
| 5 <meta charset='utf-8' /> | |
| 6 <link rel="stylesheet" href="/css/" type="text/css" media="screen"> | |
| 7 </head> | |
| 8 <body> | |
| 9 <section id=title> | |
| 10 <a href="/">Home</a> | |
| 11 <a href="/recent">Recent</a> | |
| 12 <a href="https://github.com/google/skia/tree/master/experimental/webtry">Cod e</a> | |
| 13 </section> | |
| 14 <section id=content> | |
| 15 <h1>Recent Activity</h1> | |
| 16 {{range .Tries}} | |
| 17 <section class=tries> | |
| 18 <h2><a href="/c/{{.Hash}}">{{.CreateTS}}</a></h2> | |
|
mtklein
2014/04/14 18:27:53
We might want to add the option to name these now?
jcgregorio
2014/04/14 18:43:46
Possibly. We might also want to add login and stor
mtklein
2014/04/14 19:27:47
Yeah, that would have served my hypothetical useca
| |
| 19 <a href="/c/{{.Hash}}"> | |
| 20 <img width=100 height=100 src="/i/{{.Hash}}.png"> | |
| 21 </a> | |
| 22 </section> | |
| 23 {{end}} | |
| 24 </section> | |
| 25 </body> | |
| 26 </html> | |
| OLD | NEW |