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

Side by Side Diff: includes/footer.tmpl

Issue 29812585: Fixes #85 - Moved copyright notice to global locale file (Closed) Base URL: https://hg.adblockplus.org/web.adblockplus.org
Patch Set: Created June 21, 2018, 11:25 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 | « no previous file | locales/en/minimal.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {% from "macros/pageitem" import pageitem %} 1 {% from "macros/pageitem" import pageitem %}
2 2
3 <footer id="footer" class="content"> 3 <footer id="footer" class="content">
4 <div class="container"> 4 <div class="container">
5 <div class="row"> 5 <div class="row">
6 <nav class="column one-fourth"> 6 <nav class="column one-fourth">
7 <h5>{{ get_string("resources", "menu") }}</h5> 7 <h5>{{ get_string("resources", "menu") }}</h5>
8 <ul> 8 <ul>
9 {% for pagename in ["acceptable-ads", "documentation", "deployments", "bugs"] %} 9 {% for pagename in ["acceptable-ads", "documentation", "deployments", "bugs"] %}
10 <li>{{ pagename | linkify }}{{ get_string(pagename, "menu") }}</a></ li> 10 <li>{{ pagename | linkify }}{{ get_string(pagename, "menu") }}</a></ li>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 </li> 51 </li>
52 <li> 52 <li>
53 <a href="https://www.instagram.com/adblockplus/" target="_blank"> 53 <a href="https://www.instagram.com/adblockplus/" target="_blank">
54 <img src="/img/footer-instagram-glyphicon.png"> 54 <img src="/img/footer-instagram-glyphicon.png">
55 </a> 55 </a>
56 </li> 56 </li>
57 </ul> 57 </ul>
58 </nav> 58 </nav>
59 </div> {# .row #} 59 </div> {# .row #}
60 <div id="footer-legal"> 60 <div id="footer-legal">
61 <p id="copyright-notice">{{ "Copyright © 2018 All rights reserved. Adblock Plus<sup>®</sup> is a registered trademark of <a href='https://eyeo.com'>eyeo G mbH</a>." | translate("copyright-notice", "Footer copyright notice") }}</p> 61 <p id="copyright-notice">{{ get_string("copyright", "minimal") }}</p>
62 <ul id="legal-list"> 62 <ul id="legal-list">
63 {% for pagename in ["terms", "privacy", "impressum"] %} 63 {% for pagename in ["terms", "privacy", "impressum"] %}
64 <li>{{ pagename | linkify }}{{ get_string(pagename, "menu") }}</a></li > 64 <li>{{ pagename | linkify }}{{ get_string(pagename, "menu") }}</a></li >
65 {% endfor %} 65 {% endfor %}
66 </ul> 66 </ul>
67 </div> {# #footer-legal #} 67 </div> {# #footer-legal #}
68 </div> {# .container #} 68 </div> {# .container #}
69 </footer> {# #footer #} 69 </footer> {# #footer #}
OLDNEW
« no previous file with comments | « no previous file | locales/en/minimal.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld