Chromium Code Reviews| Index: experimental/webtry/templates/recent.html |
| diff --git a/experimental/webtry/templates/recent.html b/experimental/webtry/templates/recent.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..051ac3f6053cd619180a128de1819fd16d62bc85 |
| --- /dev/null |
| +++ b/experimental/webtry/templates/recent.html |
| @@ -0,0 +1,26 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| + <title>Recent SkFiddles</title> |
| + <meta charset='utf-8' /> |
| + <link rel="stylesheet" href="/css/" type="text/css" media="screen"> |
| +</head> |
| +<body> |
| + <section id=title> |
| + <a href="/">Home</a> |
| + <a href="/recent">Recent</a> |
| + <a href="https://github.com/google/skia/tree/master/experimental/webtry">Code</a> |
| + </section> |
| + <section id=content> |
| + <h1>Recent Activity</h1> |
| + {{range .Tries}} |
| + <section class=tries> |
| + <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
|
| + <a href="/c/{{.Hash}}"> |
| + <img width=100 height=100 src="/i/{{.Hash}}.png"> |
| + </a> |
| + </section> |
| + {{end}} |
| + </section> |
| +</body> |
| +</html> |