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

Delta Between Two Patch Sets: templates/default.tmpl

Issue 29551738: Issue 5634 - Replaced logo and refactored navbar width and colors (Closed) Base URL: https://hg.adblockplus.org/web.adblockplus.org
Left Patch Set: Detailed refactor after rebase (see comments) Created Oct. 10, 2017, 5:33 p.m.
Right Patch Set: Addressed comments Created Oct. 11, 2017, 11:59 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/js/main.js ('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 {# 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 79
80 {% macro pageitem(name) %} 80 {% macro pageitem(name) %}
81 {% if name == page %} 81 {% if name == page %}
82 <li class="selected">{{get_string(name, "menu")}}</li> 82 <li class="selected">{{get_string(name, "menu")}}</li>
83 {% else %} 83 {% else %}
84 <li>{{name|linkify}}{{get_string(name, "menu")}}</a></li> 84 <li>{{name|linkify}}{{get_string(name, "menu")}}</a></li>
85 {% endif %} 85 {% endif %}
86 {% endmacro %} 86 {% endmacro %}
87 87
88 <nav id="navbar"> 88 <nav id="navbar">
89 <div class="container"> 89 <div class="navbar-container">
90 {{ "index" | linkify(id="navbar-logo") }} 90 {{ "index" | linkify(id="navbar-logo") }}
91 <img 91 <img
92 src="/img/navbar-logo.png" 92 src="/img/navbar-logo.png"
93 srcset="/img/navbar-logo.svg 2x"> 93 srcset="/img/navbar-logo.svg 2x">
94 <span>{{ "Adblock <strong>Plus</strong>" | translate("navbar-logo-text ", "Navbar logo text") }}</span> 94 <span>{{ "Adblock <strong>Plus</strong>" | translate("navbar-logo-text ", "Navbar logo text") }}</span>
95 </a> 95 </a>
96 <a href="#" id="navbar-menu-toggle"> 96 <a href="#" id="navbar-menu-toggle">
97 <img 97 <img
98 src="/img/menu-toggle.png" 98 src="/img/menu-toggle.png"
99 srcset="/img/menu-toggle.svg 2x"> 99 srcset="/img/menu-toggle.svg 2x">
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p lus.google.com/110020691898167279887"></a> 201 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p lus.google.com/110020691898167279887"></a>
202 </li> 202 </li>
203 </ul> 203 </ul>
204 </section> 204 </section>
205 </div> 205 </div>
206 </footer> 206 </footer>
207 207
208 <script src="/js/main.js"></script> 208 <script src="/js/main.js"></script>
209 </body> 209 </body>
210 </html> 210 </html>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld