This repository was archived by the owner on Aug 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathfooter.html
More file actions
31 lines (30 loc) · 1.58 KB
/
Copy pathfooter.html
File metadata and controls
31 lines (30 loc) · 1.58 KB
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
<footer id="footer" class="mt-4 mt-auto">
<div class="container-xxl">
<hr class="m-0">
<div class="row justify-content-center my-4">
<div class="col-auto me-4 d-none d-lg-flex">
<a class="my-auto" href="{{ '/' | relative_url }}"><img style="height:5rem" src="{{ '/assets/images/logos/OSG-logo.svg' | relative_url }}" alt="OSG logo"></a>
</div>
<div class="col-12 col-sm-10 col-lg-8">
<div class="row justify-content-between my-2">
{% for category in site.data.footer %}
<div class="col-auto my-2">
<table>
<tr><th>{{ category.name }}</th></tr>
{% for child in category.children %}
<tr><td><a href="{{ child.url | relative_url }}">{{ child.name }}</a></td></tr>
{% endfor %}
</table>
</div>
{% endfor %}
</div>
</div>
</div>
<hr>
<div class="row py-3">
<div class="col text-center">
This work is supported by <a href="https://www.nsf.gov/div/index.jsp?div=OAC">NSF</a> under Grant Nos. 2030508, 1836650, and 1148698. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.. <br />
</div>
</div>
</div>
</footer>