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

Side by Side Diff: templates/base.html

Issue 56023011: chromium-status: use RFC 2822 in the main date status (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-status
Patch Set: Created 7 years, 1 month 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 | « no previous file | no next file » | 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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-trans itional.dtd"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-trans itional.dtd">
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="content-type" content="text/html; charset=utf-8"/> 4 <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
5 <title>{{ title }}</title> 5 <title>{{ title }}</title>
6 <link href="/stylesheets/style.css" type="text/css" rel="stylesheet"/> 6 <link href="/stylesheets/style.css" type="text/css" rel="stylesheet"/>
7 {% block extra_head %}{% endblock %} 7 {% block extra_head %}{% endblock %}
8 </head> 8 </head>
9 <body> 9 <body>
10 <center> 10 <center>
11 <table width="100%%"> 11 <table width="100%%">
12 <tr> 12 <tr>
13 <td align="left"> 13 <td align="left">
14 <a href="/"> 14 <a href="/">
15 <img border="0" height="75" src="/logo.png"> 15 <img border="0" height="75" src="/logo.png">
16 </a> 16 </a>
17 </td> 17 </td>
18 <td valign="top" align="right"> 18 <td valign="top" align="right">
19 <b> {{ username }} </b> 19 <b> {{ username }} </b>
20 <br />{{current_UTC_time|date:"D M d, H:i T " }} 20 <br />{{current_UTC_time|date:"D, d M Y H:i:s T" }}
21 </td> 21 </td>
22 </tr> 22 </tr>
23 </table> 23 </table>
24 </center> 24 </center>
25 {% block content %}{% endblock %} 25 {% block content %}{% endblock %}
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698