OLD | NEW |
(Empty) | |
| 1 {%- block doctype -%} |
| 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 4 {% endblock %} |
| 5 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 6 <head> |
| 7 {% block head %} |
| 8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 9 {% if metatags %} |
| 10 {{ metatags }} |
| 11 {% endif %} |
| 12 {% if refresh %} |
| 13 <meta http-equiv="refresh" content="{{ refresh|e }}"/> |
| 14 {% endif %} |
| 15 <title>{{ pageTitle|e }}</title> |
| 16 <link rel="stylesheet" href="{{ stylesheet }}" type="text/css" /> |
| 17 <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ path_t
o_root }}rss"> |
| 18 {% endblock %} |
| 19 </head> |
| 20 <body class="interface"> |
| 21 {% block header -%} |
| 22 <div class="header"> |
| 23 <a href="{{ path_to_root or '.' }}">Home</a> |
| 24 - <a href="{{ path_to_root }}waterfall">Waterfall</a> |
| 25 <a href="{{ path_to_root }}grid">Grid</a> |
| 26 <a href="{{ path_to_root }}tgrid">T-Grid</a> |
| 27 <a href="{{ path_to_root }}console">Console</a> |
| 28 <a href="{{ path_to_root }}builders">Builders</a> |
| 29 <a href="{{ path_to_root }}one_line_per_build">Recent Builds</a> |
| 30 <a href="{{ path_to_root }}buildslaves">Buildslaves</a> |
| 31 <a href="{{ path_to_root }}changes">Changesources</a> |
| 32 - <a href="{{ path_to_root }}json/help">JSON API</a> |
| 33 - <a href="{{ path_to_root }}about">About</a> |
| 34 </div> |
| 35 {% endblock %} |
| 36 |
| 37 {%- block barecontent -%} |
| 38 <hr/> |
| 39 |
| 40 <div class="content"> |
| 41 {%- block content -%} |
| 42 {%- endblock -%} |
| 43 </div> |
| 44 {%- endblock -%} |
| 45 |
| 46 {%- block footer -%} |
| 47 <div class="footer" style="clear:both"> |
| 48 <hr/> |
| 49 <a href="http://buildbot.net/">BuildBot</a> ({{version}}) |
| 50 {% if title -%} |
| 51 working for the |
| 52 {%- if title_url -%} |
| 53 <a href="{{ title_url }}">{{ title }}</a> |
| 54 {%- else -%} |
| 55 {{ title }} |
| 56 {%- endif -%} |
| 57 project. |
| 58 {%- endif -%} |
| 59 <br/> |
| 60 Page built: <b>{{ time }}</b> ({{ tz }}) |
| 61 </div> |
| 62 {% endblock -%} |
| 63 </body> |
| 64 </html> |
OLD | NEW |