]> jfr.im git - irc/freenode/web-7.0.git/blob - templates/footer.html
Update policies.md
[irc/freenode/web-7.0.git] / templates / footer.html
1 <footer class="footer">
2 <div class="footer-container">
3 {% for footer in config.FOOTER %}
4 <div class="footerchild">
5 <h2>{{ footer.heading }}</h2>
6 <ul>
7 {% for link in footer.links %}
8 {%- if link is mapping %}
9 <li>
10 <a href="{{ url_for(link.link, ignore_absolute=True) }}">{{ link.name }}</a>
11 </li>
12 {%- else %}
13 <li>
14 {% for item in link %}
15 {% if item.link is defined %}
16 <a href="{{ url_for(item.link, ignore_absolute=True) }}">{{ item.name }}</a>
17 {% else %}
18 {{ item.name }}
19 {% endif %}
20 {% endfor %}
21 </li>
22 {%- endif -%}
23 {% endfor %}
24 </ul>
25 </div>
26 {% endfor %}
27 <div></div>
28 <div class="footerchild">
29 <div class="footer-push">
30 <h2>Social Media</h2>
31 <ul>
32 {%- for link in config.SOCIAL %}
33 <li>
34 <a href="{{ link.link }}" target="_blank">
35 <i class="fa fa-{{ link.icon }} fa-fw"></i> <span class="hdn">{{ link.name }}</span></a>
36 </li>
37 {%- endfor %}
38 <li>
39 <a href="https://www.privateinternetaccess.com/pages/buy-vpn/freend/" target="_blank">
40 <img alt="PIA" class="fa-fw" src="{{ url_for("static/img/logos/pia-robot-original.svg") }}">
41 <span class="hdn">Private Internet Access</span></a>
42 </li>
43 </ul>
44 </div>
45 </div>
46 </div>
47 </footer>
48 <footer class="copyright">
49 <div>
50 {%- if config.GITHUB_URL is defined %}
51 <a href="{{ config.GITHUB_URL }}"><i class="fa fa-github fa-lg"></i></a>&nbsp;
52 {% endif -%}
53 <a class="copyright" href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target= "_blank">
54 <img alt="CC by-nc-sa" src="{{ url_for("static/img/by-nc-sa.svg") }}">
55 </a>
56 </div>
57 <div>
58 {{ config.COPYRIGHT|safe }}
59 </div>
60 </footer>