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

Side by Side Diff: templates/default.tmpl

Issue 29510566: Issue 5199 - Add privacy policy link to adblockbrowser.org (Closed) Base URL: https://hg.adblockplus.org/web.adblockbrowser.org
Patch Set: Change privacy policy link to abb for android Created Sept. 13, 2017, 12:27 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-2017 eyeo GmbH 3 # Copyright (C) 2006-2017 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 <div id="content" class="content-block"> 59 <div id="content" class="content-block">
60 {% if not noheading %} 60 {% if not noheading %}
61 <h1>{{title|translate("title")}}</h1> 61 <h1>{{title|translate("title")}}</h1>
62 {% endif %} 62 {% endif %}
63 {{body|safe}} 63 {{body|safe}}
64 </div> 64 </div>
65 </div> 65 </div>
66 <footer> 66 <footer>
67 <div class="content-block"> 67 <div class="content-block">
68 <p> 68 <p>
69 © 2015 <a href="https://eyeo.com/">Eyeo GmbH</a> / Adblock Browser™ an d <a href="https://adblockplus.org/">Adblock Plus™</a> are registered trademarks of Eyeo GmbH 69 © 2017 <a href="https://eyeo.com/">Eyeo GmbH</a> / Adblock Browser™ an d <a href="https://adblockplus.org/">Adblock Plus™</a> are registered trademarks of Eyeo GmbH / <a href="https://adblockplus.org/en/privacy#adblock-browser-andr oid">Privacy Policy</a>
70 </p> 70 </p>
71 <select id="language"> 71 <select id="language">
72 {% for lang in available_locales %} 72 {% for lang in available_locales %}
73 <option 73 <option
74 {% if locale == lang %}selected="selected"{% endif %} 74 {% if locale == lang %}selected="selected"{% endif %}
75 value="{{source.resolve_link(page, lang)[1]}}"> 75 value="{{source.resolve_link(page, lang)[1]}}">
76 {{config.get("langnames", lang)}} 76 {{config.get("langnames", lang)}}
77 </option> 77 </option>
78 {% endfor %} 78 {% endfor %}
79 </select> 79 </select>
(...skipping 14 matching lines...) Expand all
94 <div id="overlay"> 94 <div id="overlay">
95 <div id="modal"> 95 <div id="modal">
96 <a href="#" id="modal-close"></a> 96 <a href="#" id="modal-close"></a>
97 <? include modal ?> 97 <? include modal ?>
98 </div> 98 </div>
99 </div> 99 </div>
100 {% endif %} 100 {% endif %}
101 <script src="/js/main.js"></script> 101 <script src="/js/main.js"></script>
102 </body> 102 </body>
103 </html> 103 </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