33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
<footer class="site-footer">
|
|
<div class="container footer-grid">
|
|
<div>
|
|
<a href="/" class="brand brand-footer">
|
|
<img src="<%= config.assets.logo %>" alt="<%= config.brand.name %> logo" loading="lazy" />
|
|
<span><%= config.brand.name %></span>
|
|
</a>
|
|
<p><%= config.brand.tagline %></p>
|
|
<p class="legal"><%= config.brand.legalName %></p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4>Explore</h4>
|
|
<ul class="footer-links">
|
|
<% config.nav.forEach(item => { %>
|
|
<li><a href="<%= item.href %>"><%= item.label %></a></li>
|
|
<% }) %>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h4>Contact</h4>
|
|
<ul class="footer-links">
|
|
<li><a href="<%= config.contact.phoneHref %>"><%= config.contact.phoneDisplay %></a></li>
|
|
<li><a href="mailto:<%= config.contact.email %>"><%= config.contact.email %></a></li>
|
|
<li><%= config.contact.addressLine1 %><br /><%= config.contact.addressLine2 %></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="container footer-bottom">
|
|
<small>© <%= new Date().getFullYear() %> <%= config.brand.name %>. All rights reserved.</small>
|
|
</div>
|
|
</footer>
|