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

Delta Between Two Patch Sets: templates/default.tmpl

Issue 29337807: Issue 3097 - Refactored subscriptions list table on adblockplus.org/en/subscriptions (Closed)
Left Patch Set: Changed table into unordered list, refactored list markup, refactored main css and templates to support multiple footer elements Created Feb. 27, 2016, 4:16 p.m.
Right Patch Set: Removed extra whitespace Created July 29, 2016, 10:52 a.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/css/main-mobile.css ('k') | templates/simple.tmpl » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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-2016 Eyeo GmbH 3 # Copyright (C) 2006-2016 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
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details. 12 # GNU General Public License for more details.
13 # 13 #
14 # You should have received a copy of the GNU General Public License 14 # You should have received a copy of the GNU General Public License
15 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 15 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 #} 16 #}
17 17
18 <!DOCTYPE html> 18 <!DOCTYPE html>
19 <html lang="{{locale}}" dir="{{"rtl" if config.has_option("rtl", locale) else "l tr"}}" itemscope="itemscope" itemtype="http://schema.org/WebPage"> 19 <html lang="{{locale}}" dir="{{"rtl" if config.has_option("rtl", locale) else "l tr"}}" itemscope="itemscope" itemtype="http://schema.org/WebPage">
20 <head> 20 <head>
21 <title>{{title|translate("title")}}</title> 21 <title>{{title|translate("title")}}</title>
22 22
23 <meta charset="utf-8">
23 <meta name="viewport" content="width=device-width, initial-scale=1"> 24 <meta name="viewport" content="width=device-width, initial-scale=1">
24 <link rel="stylesheet" href="/css/main.css" class="cssfx"> 25 <link rel="stylesheet" href="/css/main.css" class="cssfx">
25 <link rel="stylesheet" href="/css/main-desktop.css" media="(min-width: 1000p x)" class="cssfx"> 26 <link rel="stylesheet" href="/css/main-desktop.css" media="(min-width: 1000p x)" class="cssfx">
26 <link rel="stylesheet" href="/css/main-mobile.css" media="(max-width: 1000px )"> 27 <link rel="stylesheet" href="/css/main-mobile.css" media="(max-width: 1000px )">
27 28
28 <link rel="canonical" href="https://adblockplus.org/{{page}}"> 29 <link rel="canonical" href="https://adblockplus.org/{{page}}">
29 <link rel="apple-touch-icon" href="/img/favicon-large.png" /> 30 <link rel="apple-touch-icon" href="/img/favicon-large.png" />
30 31
31 <!--[if IE 8]> 32 <!--[if IE 8]>
32 <script src="/js/vendor/ie8.js"></script> 33 <script src="/js/vendor/ie8.js"></script>
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 {{toc(toclist)}} 136 {{toc(toclist)}}
136 </div> 137 </div>
137 {% endif %} 138 {% endif %}
138 {% endif %} 139 {% endif %}
139 140
140 {% block body %} 141 {% block body %}
141 {{body|safe}} 142 {{body|safe}}
142 {% endblock %} 143 {% endblock %}
143 </div> 144 </div>
144 145
145 <footer class="footer-main"> 146 <footer id="footer-main">
146 <div id="footer-content"> 147 <div id="footer-content">
147 <nav> 148 <nav>
148 <section class="first"> 149 <section class="first">
149 <h1>{{get_string("resources", "menu")}}</h1> 150 <h1>{{get_string("resources", "menu")}}</h1>
150 <ul> 151 <ul>
151 {% for name in ["acceptable-ads", "documentation", "deployments", "privacy", "impressum"] %} 152 {% for name in ["acceptable-ads", "documentation", "deployments", "privacy", "impressum"] %}
152 {{pageitem(name)}} 153 {{pageitem(name)}}
153 {% endfor %} 154 {% endfor %}
154 </ul> 155 </ul>
155 </section> 156 </section>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p lus.google.com/110020691898167279887"></a> 188 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p lus.google.com/110020691898167279887"></a>
188 </li> 189 </li>
189 </ul> 190 </ul>
190 </section> 191 </section>
191 </div> 192 </div>
192 </footer> 193 </footer>
193 194
194 <script src="/js/main.js"></script> 195 <script src="/js/main.js"></script>
195 </body> 196 </body>
196 </html> 197 </html>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld