Index: experimental/webtry/templates/recent.html |
diff --git a/experimental/webtry/templates/recent.html b/experimental/webtry/templates/recent.html |
index 645ad3480c426c7e6947b5f035d53955c8e5d2eb..d5e4cc7259234e6a112218918d802ddb16d73241 100644 |
--- a/experimental/webtry/templates/recent.html |
+++ b/experimental/webtry/templates/recent.html |
@@ -3,22 +3,23 @@ |
<head> |
<title>Recent SkFiddles</title> |
<meta charset='utf-8' /> |
- <link rel="stylesheet" href="/res/css/webtry.css" type="text/css" media="screen"> |
+ {{template "headercommon.html" .}} |
</head> |
<body> |
{{template "titlebar.html" .}} |
<section id=content> |
- <h1>Recent Activity</h1> |
- <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> |
+ <h1>Recent Activity</h1> |
+ <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> |
+ {{template "footercommon.html" .}} |
</body> |
</html> |