1<footer class="site-footer h-card">
2 <data class="u-url" value="{{ '/' | relative_url }}"></data>
3
4 <div class="wrapper">
5
6 <div class="footer-col-wrapper">
7 <div class="footer-col">
8 {%- if site.author %}
9 <ul class="contact-list">
10 {% if site.author.name -%}
11 <li class="p-name">{{ site.author.name | escape }}</li>
12 {% endif -%}
13 {% if site.author.email -%}
14 <li><a class="u-email" href="mailto:{{ site.author.email }}">{{ site.author.email }}</a></li>
15 {%- endif %}
16 </ul>
17 {%- endif %}
18 </div>
19 <div class="footer-col">
20 <p>{{ site.description | escape }}</p>
21 </div>
22 </div>
23
24 {%- if site.social_links -%}
25 <ul class="social-media-list">
26 {%- for entry in site.social_links -%}
27 <li>
28 <a href="{{ entry.url }}" title="{{ entry.title | escape }}" aria-label="{{ entry.title | escape }}">
29 <i class="fa-brands fa-{{ entry.icon }}" aria-hidden="true"></i>
30 </a>
31 </li>
32 {%- endfor -%}
33 </ul>
34 {%- endif -%}
35
36 <div class="footer-copyright">
37 Copyright © Gemara contributors, a Series of LF Projects, LLC.
38 For website terms of use, trademark policy, and other project policies please see <a href="https://lfprojects.org">https://lfprojects.org</a>.
39 This site is open source. View or contribute at <a href="https://github.com/{{ site.repository }}">GitHub</a>.
40 </div>
41
42</div>
43
44</footer>