- Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathfooter.html
47 lines (47 loc) · 1.5 KB
/
footer.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<footerclass="full footer grid-content">
<divclass="feature flex footer__inset">
<divclass="footer__logo">
<ahref="https://www.urban.org/" aria-label="Urban Institute">
{% include components/svg.html
filename = "logo-full"
width = "10em"
%}
</a>
</div>
<divclass="footer__nav flow">
{% comment %}
FOOTER NAV
These pull from the footer_nav list in _config.yml
{% endcomment %}
<navclass="footer__navbar">
<ulclass="footer__nav__list">
{% for link in site.footer_nav %}
<liclass="footer__nav__item">
<aclass="footer__nav__link" href="{{ link.url | relative_url }}">{{ link.title }}</a>
</li>
{% endfor %}
<liclass="footer__nav__item">Copyright © Urban Institute</li>
</ul>
</nav>
{% comment %}
SOCIAL LINKS
These pull from the social_links list in _config.yml
{% endcomment %}
<divclass="footer__social">
<ulclass="footer__social__list">
{% for link in site.social_links %}
<liclass="footer__social__item">
<aclass="footer__social__link" href="{{ link.url }}">
<spanclass="sr-only">{{ link.service }}</span>
{% include components/svg.html
filename = link.service
width = "1.5em"
%}
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</footer>