Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: templates/default.tmpl

Issue 29485575: Issue 5385 - Create Site Header Component for Help Center (Closed)
Left Patch Set: Fix svgs, Implement search, Show searchbar for no-js Created July 17, 2017, 9:24 a.m.
Right Patch Set: Include site variables before website-defaults Created Sept. 1, 2017, 12:11 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « static/scss/main.scss ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 This file is part of help.eyeo.com. 3 This file is part of help.eyeo.com.
4 Copyright (C) 2017 Eyeo GmbH 4 Copyright (C) 2017 Eyeo GmbH
5 5
6 help.eyeo.com is free software: you can redistribute it and/or modify 6 help.eyeo.com is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or 8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version. 9 (at your option) any later version.
10 10
11 help.eyeo.com is distributed in the hope that it will be useful, 11 help.eyeo.com is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details. 14 GNU General Public License for more details.
15 15
16 You should have received a copy of the GNU General Public License 16 You should have received a copy of the GNU General Public License
17 along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>. 17 along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>.
18 --> 18 -->
19 <html 19 <html
20 lang="{{ locale }}" 20 lang="{{ locale }}"
21 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}" 21 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}">
22 class="no-js">
23 <head> 22 <head>
24 <meta charset="utf-8"> 23 <meta charset="utf-8">
25 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to- fit=no"> 24 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to- fit=no">
26 <meta http-equiv="x-ua-compatible" content="ie=edge"> 25 <meta http-equiv="x-ua-compatible" content="ie=edge">
27 26
28 <title>{{ title | translate("page-title", "Meta page title") }}</title> 27 <title>{{ title | translate("page-title", "Meta page title") }}</title>
29 28
30 <!--[if IE 8]> 29 <!--[if IE 8]>
31 <script src="/js/vendor/ie8.js"></script> 30 <script src="/js/vendor/ie8.min.js"></script>
32 <![endif]--> 31 <![endif]-->
33 32
34 <link rel="stylesheet" href="/css/main.css"> 33 <link rel="stylesheet" href="/css/main.css">
35 34
36 <!--[if lt IE 9]> 35 <!--[if lt IE 9]>
37 <script src="/js/vendor/html5shiv.js"></script> 36 <script src="/js/vendor/html5shiv.min.js"></script>
38 <script src="/js/vendor/respond.min.js"></script> 37 <script src="/js/vendor/respond.min.js"></script>
38 <![endif]-->
39
40 <!--[if lt IE 10]>
41 <script src="/js/vendor/classList.min.js"></script>
39 <![endif]--> 42 <![endif]-->
40 43
41 {% block head %} 44 {% block head %}
42 {{ head | safe }} 45 {{ head | safe }}
43 {% endblock %} 46 {% endblock %}
44 </head> 47 </head>
45 <body> 48 <body>
46 <? include layout/header ?> 49 <? include layout/header ?>
47 <div class="outer">
juliandoucette 2017/07/19 18:03:39 I think that all of these changes except for <? in
48 {% block body %} 50 {% block body %}
49 {{ body | safe }} 51 {{ body | safe }}
50 {% endblock %} 52 {% endblock %}
51 </div>
52 <script src="/js/main.js"></script> 53 <script src="/js/main.js"></script>
53 </body> 54 </body>
54 <html> 55 <html>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld