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

Side by Side Diff: includes/footer.tmpl

Issue 29611624: Issue 6047 - Updated templates and uninstalled pages (Closed) Base URL: https://hg.adblockplus.org/web.adblockplus.org
Patch Set: Addressed comments in #15 Created Dec. 18, 2017, 12:55 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 | includes/html-attributes.tmpl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {% from "macros/pageitem" import pageitem %}
2
3 <footer id="footer" class="content">
4 <div class="container">
5 <div class="row">
6 <nav class="column one-fourth">
7 <h5>{{ get_string("resources", "menu") }}</h5>
8 <ul>
9 {% for pagename in ["acceptable-ads", "documentation", "deployments"] %}
10 <li>{{ pagename | linkify }}{{ get_string(pagename, "menu") }}</a></ li>
11 {% endfor %}
12 </ul>
13 </nav>
14 <nav class="column one-fourth">
15 <h5>{{ get_string("community", "menu") }}</h5>
16 <ul>
17 <li><a href="/releases/" hreflang="en">{{get_string("releases", "menu" )}}</a></li>
18 <li><a href="/blog/" hreflang="en">{{get_string("blog", "menu")}}</a>< /li>
19 <li><a href="/forum/" hreflang="en">{{get_string("forum", "menu")}}</a ></li>
20 {{ pageitem("development-builds") }}
21 </ul>
22 </nav>
23 <nav class="column one-fourth">
24 <h5>{{get_string("development", "menu")}}</h5>
25 <ul>
26 {{ pageitem("source") }}
27 <li><a href="https://issues.adblockplus.org/report/13" hreflang="en">{ { get_string("roadmap", "menu") }}</a></li>
28 {{ pageitem("tools") }}
29 <li><a href="https://eyeo.com/jobs/" hreflang="en">{{ get_string("jobs ", "menu") }}</a></li>
30 </ul>
31 </nav>
32 <nav id="social-list" class="column one-fourth">
33 <h5>{{get_string("follow-us", "menu")}}</h5>
34 <ul>
35 <li>
36 <a href="https://twitter.com/AdblockPlus" target="_blank">
37 <img
38 src="/img/footer-twitter-glyphicon.png"
39 alt="{{ "Twitter" | translate("twitter-alt", "Twitter glyphicon alt text")}}">
40 </a>
41 </li>
42 <li>
43 <a href="https://www.youtube.com/user/AdblockPlusOfficial" target="_ blank">
44 <img src="/img/footer-youtube-glyphicon.png">
45 </a>
46 </li>
47 <li>
48 <a href="https://www.facebook.com/adblockplus" target="_blank">
49 <img src="/img/footer-facebook-glyphicon.png">
50 </a>
51 </li>
52 <li>
53 <a href="https://www.instagram.com/adblockplus/" target="_blank">
54 <img src="/img/footer-instagram-glyphicon.png">
55 </a>
56 </li>
57 </ul>
58 </nav>
59 </div> {# .row #}
60 <div id="footer-legal">
61 <p id="copyright-notice">{{ "Copyright © 2017 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>
62 <ul id="legal-list">
63 {% for pagename in ["terms", "privacy", "impressum"] %}
64 <li>{{ pagename | linkify }}{{ get_string(pagename, "menu") }}</a></li >
65 {% endfor %}
66 </ul>
67 </div> {# #footer-legal #}
68 </div> {# .container #}
69 </footer> {# #footer #}
OLDNEW
« no previous file with comments | « no previous file | includes/html-attributes.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld