Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions templates/html.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
{{ page }}
{{ page_bottom }}

{# Not ready to use yet b/c footer stuff is included in cwd_base/page.html.twig.
Placeholder footer template is in @cwd_project/partials, ready to use down the road -- or for use by new child themes.
{% include "@cwd_project/partials/site-footer.html.twig" %} #}
{% include "@cwd_project/partials/site-footer.html.twig" %}

<js-bottom-placeholder token="{{ placeholder_token|raw }}">
<!-- Emergency banner removed March 2021 -->
Expand Down
32 changes: 19 additions & 13 deletions templates/partials/site-footer.html.twig
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{# PLACEHOLDER until if/when footer stuff is removed from cwd_base/page.html.twig, or we add a page.html.twig template override to cwd_project. #}
<footer aria-label="Site footer">
<footer id="body-footer" aria-label="Site footer">
<div class="main-footer">
<div class="container-fluid sidebar-left">
<div class="row">
<div class="primary">
{{ page.footer_primary }}
</div>
<div class="secondary">
{{ page.footer_secondary }}
<div class="flex-grid">
<div class="flex-6">
{{ page.footer_primary }}
</div>
<div class="flex-6">
{{ page.footer_secondary }}
</div>
</div>
</div>
</div>
Expand All @@ -16,12 +17,17 @@
<div class="container-fluid sidebar-left">
<div class="row">
<div class="content">
<div class="privacy">
<a href="#">University Privacy</a>
</div>

<div class="footer-accessibility">
<a href="https://www.cornell.edu/accessibility-assistance.cfm">Web Accessibility Assistance</a>
<div class="two-col">
<div>
<ul class="custom inline no-bullet">
<li><a href="https://privacy.cornell.edu/">University Privacy</a></li>
</ul>
</div>
<div>
<ul class="custom inline no-bullet">
<li><a href="mailto:[email protected]">Web Accessibility Assistance</a></li>
</ul>
</div>
</div>
</div>
</div>
Expand Down