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

Side by Side Diff: templates/default.tmpl

Issue 5699656273100800: Issue 2515 - Fix for IE8 rendering issue on homepage (Closed)
Patch Set: Created May 13, 2015, 2:57 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
« 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 {# 1 {#
2 # This file is part of the Adblock Plus website, 2 # This file is part of the Adblock Plus website,
3 # Copyright (C) 2006-2015 Eyeo GmbH 3 # Copyright (C) 2006-2015 Eyeo GmbH
4 # 4 #
5 # Adblock Plus is free software: you can redistribute it and/or modify 5 # Adblock Plus is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License version 3 as 6 # it under the terms of the GNU General Public License version 3 as
7 # published by the Free Software Foundation. 7 # published by the Free Software Foundation.
8 # 8 #
9 # Adblock Plus is distributed in the hope that it will be useful, 9 # Adblock Plus is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 13 matching lines...) Expand all
24 <link rel="stylesheet" href="/css/main.css" class="cssfx"> 24 <link rel="stylesheet" href="/css/main.css" class="cssfx">
25 <link rel="stylesheet" href="/css/main-desktop.css" media="(min-width: 40.5e m)" class="cssfx"> 25 <link rel="stylesheet" href="/css/main-desktop.css" media="(min-width: 40.5e m)" class="cssfx">
26 <link rel="stylesheet" href="/css/main-mobile.css" media="screen and (max-wi dth: 40.5em)"> 26 <link rel="stylesheet" href="/css/main-mobile.css" media="screen and (max-wi dth: 40.5em)">
27 <noscript> 27 <noscript>
28 <link rel="stylesheet" href="/css/noscript-desktop.css" media="(min-width: 40.5em)"/> 28 <link rel="stylesheet" href="/css/noscript-desktop.css" media="(min-width: 40.5em)"/>
29 <link rel="stylesheet" href="/css/noscript-mobile.css" media="screen and ( max-width: 40.5em)"/> 29 <link rel="stylesheet" href="/css/noscript-mobile.css" media="screen and ( max-width: 40.5em)"/>
30 </noscript> 30 </noscript>
31 31
32 <link rel="canonical" href="https://adblockplus.org/{{page}}"> 32 <link rel="canonical" href="https://adblockplus.org/{{page}}">
33 33
34 {% block head %}
35 {{head|safe}}
36 {% endblock %}
37
34 <!--[if lt IE 7]> 38 <!--[if lt IE 7]>
35 <script src="/js/vendor/DD_belatedPNG.js"></script> 39 <script src="/js/vendor/DD_belatedPNG.js"></script>
36 <script>DD_belatedPNG.fix(".sprite");</script> 40 <script>DD_belatedPNG.fix(".sprite");</script>
37 <![endif]--> 41 <![endif]-->
38 <!--[if lt IE 9]> 42 <!--[if lt IE 9]>
39 <script src="/js/vendor/html5shiv.js"></script> 43 <script src="/js/vendor/html5shiv.js"></script>
40 <script src="/js/vendor/respond.min.js"></script> 44 <script src="/js/vendor/respond.min.js"></script>
41 <![endif]--> 45 <![endif]-->
42 <!--[if lt IE 10]><script src="/js/vendor/cssfx.min.js"></script><![endif]-- > 46 <!--[if lt IE 10]><script src="/js/vendor/cssfx.min.js"></script><![endif]-- >
43 <!-- Fixes cssfx issues in IE8. --> 47 <!-- Fixes cssfx issues in IE8. -->
44 <!--[if IE 8]> 48 <!--[if IE 8]>
45 <link rel="stylesheet" href="/css/empty.css" class="cssfx"/> 49 <link rel="stylesheet" href="/css/empty.css" class="cssfx"/>
46 <![endif]--> 50 <![endif]-->
47
48 {% block head %}
49 {{head|safe}}
50 {% endblock %}
51 </head> 51 </head>
52 52
53 <body> 53 <body>
54 {% macro pageitem(name) %} 54 {% macro pageitem(name) %}
55 {% if name == page %} 55 {% if name == page %}
56 <li class="selected">{{get_string(name, "menu")}}</li> 56 <li class="selected">{{get_string(name, "menu")}}</li>
57 {% else %} 57 {% else %}
58 <li>{{name|linkify}}{{get_string(name, "menu")}}</a></li> 58 <li>{{name|linkify}}{{get_string(name, "menu")}}</a></li>
59 {% endif %} 59 {% endif %}
60 {% endmacro %} 60 {% endmacro %}
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p lus.google.com/110020691898167279887"></a> 176 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p lus.google.com/110020691898167279887"></a>
177 </li> 177 </li>
178 </ul> 178 </ul>
179 </section> 179 </section>
180 </div> 180 </div>
181 </footer> 181 </footer>
182 182
183 <script src="/js/main.js"></script> 183 <script src="/js/main.js"></script>
184 </body> 184 </body>
185 </html> 185 </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