Index: experimental/webtry/templates/recent.html |
diff --git a/experimental/webtry/templates/recent.html b/experimental/webtry/templates/recent.html |
index 051ac3f6053cd619180a128de1819fd16d62bc85..96be7141cdbbe8148bb66ee2b49d02d88cd5b755 100644 |
--- a/experimental/webtry/templates/recent.html |
+++ b/experimental/webtry/templates/recent.html |
@@ -6,21 +6,19 @@ |
<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> |
+ {{template "titlebar.html"}} |
<section id=content> |
<h1>Recent Activity</h1> |
- {{range .Tries}} |
- <section class=tries> |
- <h2><a href="/c/{{.Hash}}">{{.CreateTS}}</a></h2> |
- <a href="/c/{{.Hash}}"> |
- <img width=100 height=100 src="/i/{{.Hash}}.png"> |
- </a> |
- </section> |
- {{end}} |
+ <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> |