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

Side by Side Diff: experimental/webtry/templates/recent.html

Issue 231853002: Cleaned up the start page, added wait cursor, disabled Run button while waiting for results. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: first pass at workspaces 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 unified diff | Download patch
« no previous file with comments | « experimental/webtry/templates/index.html ('k') | experimental/webtry/templates/workspace.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Recent SkFiddles</title> 4 <title>Recent SkFiddles</title>
5 <meta charset='utf-8' /> 5 <meta charset='utf-8' />
6 <link rel="stylesheet" href="/css/" type="text/css" media="screen"> 6 <link rel="stylesheet" href="/css/" type="text/css" media="screen">
7 </head> 7 </head>
8 <body> 8 <body>
9 <section id=title> 9 <section id=title>
10 <a href="/">Home</a> 10 <a href="/">Home</a>
11 <a href="/recent">Recent</a> 11 <a href="/recent">Recent</a>
12 <a href="https://github.com/google/skia/tree/master/experimental/webtry">Cod e</a> 12 <a href="https://github.com/google/skia/tree/master/experimental/webtry">Cod e</a>
13 </section> 13 </section>
14 <section id=content> 14 <section id=content>
15 <h1>Recent Activity</h1> 15 <h1>Recent Activity</h1>
16 {{range .Tries}} 16 <section>
17 <section class=tries> 17 {{range .Tries}}
18 <h2><a href="/c/{{.Hash}}">{{.CreateTS}}</a></h2> 18 <div class=tries>
19 <a href="/c/{{.Hash}}"> 19 <h2><a href="/c/{{.Hash}}">{{.CreateTS}}</a></h2>
20 <img width=100 height=100 src="/i/{{.Hash}}.png"> 20 <a href="/c/{{.Hash}}">
21 </a> 21 <img width=100 height=100 src="/i/{{.Hash}}.png">
22 </section> 22 </a>
23 {{end}} 23 </div>
24 {{end}}
25 </section>
24 </section> 26 </section>
25 </body> 27 </body>
26 </html> 28 </html>
OLDNEW
« no previous file with comments | « experimental/webtry/templates/index.html ('k') | experimental/webtry/templates/workspace.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698