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

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

Issue 261693003: Use CodeMirror for WebTry snippets. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: design.md notes Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « experimental/webtry/templates/index.html ('k') | experimental/webtry/templates/template.cpp » ('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="/res/css/webtry.css" type="text/css" media="scr een">
7 </head> 7 </head>
8 <body> 8 <body>
9 {{template "titlebar.html" .}} 9 {{template "titlebar.html" .}}
10 <section id=content> 10 <section id=content>
11 <h1>Recent Activity</h1> 11 <h1>Recent Activity</h1>
12 <section> 12 <section>
13 {{range .Tries}} 13 {{range .Tries}}
14 <div class=tries> 14 <div class=tries>
15 <h2><a href="/c/{{.Hash}}">{{.CreateTS}}</a></h2> 15 <h2><a href="/c/{{.Hash}}">{{.CreateTS}}</a></h2>
16 <a href="/c/{{.Hash}}"> 16 <a href="/c/{{.Hash}}">
17 <img width=128 height=128 src="/i/{{.Hash}}.png"> 17 <img width=128 height=128 src="/i/{{.Hash}}.png">
18 </a> 18 </a>
19 </div> 19 </div>
20 {{end}} 20 {{end}}
21 </section> 21 </section>
22 </section> 22 </section>
23 </body> 23 </body>
24 </html> 24 </html>
OLDNEW
« no previous file with comments | « experimental/webtry/templates/index.html ('k') | experimental/webtry/templates/template.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698