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

Side by Side Diff: templates/default.tmpl

Issue 29488555: Issue 5406 - Create Site Footer Component for Help Center (Closed)
Patch Set: Remove langnames commit, use website-default breakpoint variables Created Sept. 18, 2017, 3:09 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« static/scss/layout/_grid.scss ('K') | « static/scss/main.scss ('k') | 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> 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-present eyeo GmbH 4 Copyright (C) 2017-present 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">
22 <head> 23 <head>
23 <meta charset="utf-8"> 24 <meta charset="utf-8">
24 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to- fit=no"> 25 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to- fit=no">
25 <meta http-equiv="x-ua-compatible" content="ie=edge"> 26 <meta http-equiv="x-ua-compatible" content="ie=edge">
26 27
27 <title>{{ title | translate("page-title", "Meta page title") }}</title> 28 <title>{{ title | translate("page-title", "Meta page title") }}</title>
28 29
29 <!--[if IE 8]> 30 <!--[if IE 8]>
30 <script src="/js/vendor/ie8.min.js"></script> 31 <script src="/js/vendor/ie8.min.js"></script>
31 <![endif]--> 32 <![endif]-->
(...skipping 11 matching lines...) Expand all
43 44
44 {% block head %} 45 {% block head %}
45 {{ head | safe }} 46 {{ head | safe }}
46 {% endblock %} 47 {% endblock %}
47 </head> 48 </head>
48 <body> 49 <body>
49 <? include layout/header ?> 50 <? include layout/header ?>
50 {% block body %} 51 {% block body %}
51 {{ body | safe }} 52 {{ body | safe }}
52 {% endblock %} 53 {% endblock %}
54 <? include layout/footer ?>
53 <script src="/js/main.js"></script> 55 <script src="/js/main.js"></script>
54 </body> 56 </body>
55 <html> 57 <html>
OLDNEW
« static/scss/layout/_grid.scss ('K') | « static/scss/main.scss ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld