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

Delta Between Two Patch Sets: templates/minimal.tmpl

Issue 29559620: Issue 5692 - Create Browser Selector with Browser Detection Component for help.eyeo.com (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Left Patch Set: SVG enhancement for arrow-icon, correct formatting Created Oct. 20, 2017, 1:39 p.m.
Right Patch Set: Re-add browser-select include, add scripts block Created Nov. 2, 2017, 2:29 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
« static/scss/components/_select.scss ('K') | « templates/article.tmpl ('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-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
(...skipping 25 matching lines...) Expand all
36 <![endif]--> 36 <![endif]-->
37 37
38 <!--[if lt IE 10]> 38 <!--[if lt IE 10]>
39 <script src="/js/vendor/classList.min.js"></script> 39 <script src="/js/vendor/classList.min.js"></script>
40 <![endif]--> 40 <![endif]-->
41 41
42 {% block head %} 42 {% block head %}
43 {{ head | safe }} 43 {{ head | safe }}
44 {% endblock %} 44 {% endblock %}
45 </head> 45 </head>
46 <body class="us-safari ua-ios ua-safari ua-chrome"> 46 <body>
juliandoucette 2017/10/23 13:43:12 I'm guessing that this is supposed to be uA-safari
ire 2017/10/23 16:13:53 No I was testing to make sure that only ua-* class
ire 2017/10/23 16:15:40 Done.
47 <? include layout/header ?> 47 <? include layout/header ?>
48 <div class="outer"> 48 <div class="outer">
49 {% block body %} 49 {% block body %}
50 {{ body | safe }} 50 {{ body | safe }}
51 {% endblock %} 51 {% endblock %}
52 </div> 52 </div>
53 {% block footer %} 53 {% block footer %}
54 {{ footer | safe }} 54 {{ footer | safe }}
55 {% endblock %} 55 {% endblock %}
56 <? include layout/footer ?> 56 <? include layout/footer ?>
57 {% block scripts %}
58 {{ scripts | safe }}
59 {% endblock %}
57 <script src="/js/main.js"></script> 60 <script src="/js/main.js"></script>
58 </body> 61 </body>
59 <html> 62 <html>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld