]> jfr.im git - irc/freenode/web-7.0.git/blob - templates/footer.html
2021-06-05: update people
[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 </ul>
39 </div>
40 </div>
41 </div>
42 </footer>
43 <footer class="copyright">
44 <div>
45 {%- if config.GITHUB_URL is defined %}
46 <a href="{{ config.GITHUB_URL }}"><i class="fa fa-github fa-lg"></i></a>&nbsp;
47 {% endif -%}
48 <a class="copyright" href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target= "_blank">
49 <img alt="CC by-nc-sa" src="{{ url_for("static/img/by-nc-sa.svg") }}">
50 </a>
51 </div>
52 <div>
53 {{ config.COPYRIGHT|safe }}
54 </div>
55 </footer>