Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Unified Diff: experimental/webtry/templates/recent.html

Issue 236193011: Add /recent (Closed) Base URL: https://skia.googlesource.com/skia.git@all
Patch Set: stray print Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698