472f830351
BUG=skia: R=mtklein@google.com Author: jcgregorio@google.com Review URL: https://codereview.chromium.org/258033006 git-svn-id: http://skia.googlecode.com/svn/trunk@14407 2bbb7eff-a529-9590-31e7-b0007b416f81
25 lines
552 B
HTML
25 lines
552 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Recent SkFiddles</title>
|
|
<meta charset='utf-8' />
|
|
<link rel="stylesheet" href="/css/" type="text/css" media="screen">
|
|
</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>
|
|
</section>
|
|
</body>
|
|
</html>
|