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

Side by Side Diff: templates/default.tmpl

Issue 29573885: Noissue - Removed *-desktop.css and *-mobile.css from new abp.org (Closed) Base URL: https://bitbucket.org/adblockplus/adblockplus.org
Patch Set: Removed references in default.tmpl Created Oct. 12, 2017, 11:20 a.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 | « static/css/noscript-mobile.css ('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 {# 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-present eyeo GmbH 3 # Copyright (C) 2006-present 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 29 matching lines...) Expand all
40 {% endif %} 40 {% endif %}
41 {% endfor %} 41 {% endfor %}
42 <meta property="og:url" content="{{ get_canonical_url(page | ignore_browsers ) }}"> 42 <meta property="og:url" content="{{ get_canonical_url(page | ignore_browsers ) }}">
43 43
44 {# twitter https://dev.twitter.com/cards/markup #} 44 {# twitter https://dev.twitter.com/cards/markup #}
45 <meta name="twitter:site" content="@AdblockPlus" /> 45 <meta name="twitter:site" content="@AdblockPlus" />
46 <meta name="twitter:creator" content="@AdblockPlus" /> 46 <meta name="twitter:creator" content="@AdblockPlus" />
47 47
48 <link rel="stylesheet" href="/css/defaults.css" class="cssfx"> 48 <link rel="stylesheet" href="/css/defaults.css" class="cssfx">
49 <link rel="stylesheet" href="/css/main.css" class="cssfx"> 49 <link rel="stylesheet" href="/css/main.css" class="cssfx">
50 <link rel="stylesheet" href="/css/main-desktop.css" media="(min-width: 1000p x)" class="cssfx">
51 <link rel="stylesheet" href="/css/main-mobile.css" media="(max-width: 1000px )">
52 <link rel="apple-touch-icon" href="/img/favicon-large.png" /> 50 <link rel="apple-touch-icon" href="/img/favicon-large.png" />
53 51
54 <!--[if IE 8]> 52 <!--[if IE 8]>
55 <script src="/js/vendor/ie8.js"></script> 53 <script src="/js/vendor/ie8.js"></script>
56 <![endif]--> 54 <![endif]-->
57 55
58 {% block head %} 56 {% block head %}
59 {{head|safe}} 57 {{head|safe}}
60 {% endblock %} 58 {% endblock %}
61 59
62 <!--[if lt IE 9]> 60 <!--[if lt IE 9]>
63 <script src="/js/vendor/html5shiv.js"></script> 61 <script src="/js/vendor/html5shiv.js"></script>
64 <script src="/js/vendor/respond.min.js"></script> 62 <script src="/js/vendor/respond.min.js"></script>
65 <![endif]--> 63 <![endif]-->
66 <!--[if lt IE 10]> 64 <!--[if lt IE 10]>
67 <script src="/js/vendor/cssfx.min.js"></script> 65 <script src="/js/vendor/cssfx.min.js"></script>
68 <![endif]--> 66 <![endif]-->
69 <!--[if IE 8]> 67 <!--[if IE 8]>
70 <link rel="stylesheet" href="/css/empty.css" class="cssfx"/> 68 <link rel="stylesheet" href="/css/empty.css" class="cssfx"/>
71 <![endif]--> 69 <![endif]-->
72 </head> 70 </head>
73 71
74 <body> 72 <body>
75 <noscript>
76 <link rel="stylesheet" href="/css/noscript-desktop.css" media="(min-width: 1000px)"/>
77 <link rel="stylesheet" href="/css/noscript-mobile.css" media="(max-width: 1000px)"/>
78 </noscript>
79
80 {% macro pageitem(name) %} 73 {% macro pageitem(name) %}
81 {% if name == page %} 74 {% if name == page %}
82 <li class="selected">{{get_string(name, "menu")}}</li> 75 <li class="selected">{{get_string(name, "menu")}}</li>
83 {% else %} 76 {% else %}
84 <li>{{name|linkify}}{{get_string(name, "menu")}}</a></li> 77 <li>{{name|linkify}}{{get_string(name, "menu")}}</a></li>
85 {% endif %} 78 {% endif %}
86 {% endmacro %} 79 {% endmacro %}
87 80
88 <nav id="navbar"> 81 <nav id="navbar">
89 <div class="navbar-container"> 82 <div class="navbar-container">
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 <li>{{ pagename | linkify }}{{ get_string(pagename, "menu") }}</a> </li> 212 <li>{{ pagename | linkify }}{{ get_string(pagename, "menu") }}</a> </li>
220 {% endfor %} 213 {% endfor %}
221 </ul> 214 </ul>
222 </div> {# #footer-legal #} 215 </div> {# #footer-legal #}
223 </div> {# .container #} 216 </div> {# .container #}
224 </footer> {# #footer #} 217 </footer> {# #footer #}
225 218
226 <script src="/js/main.js"></script> 219 <script src="/js/main.js"></script>
227 </body> 220 </body>
228 </html> 221 </html>
OLDNEW
« no previous file with comments | « static/css/noscript-mobile.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld