itsericwoodward-site-v2/src/layouts/partials/footer.ejs

52 lines
1.7 KiB
Plaintext

<!-- FOOTER BEGIN -->
<footer id="footer" class="pageFooter pageSection clearfix">
<div class="pageFooter-inner">
<p class="pageFooter-dates">
<% if (page.date_pub && !isNaN(new Date(page.date_pub).getTime())) { -%>
Page first published:
<time datetime="<%= new Date(page.date_pub).toISOString() %>"><%= shortDate(new Date(page.date_pub).toISOString()) %></time>
<br />
<% } -%>
<% if (page.date_upd && !isNaN(new Date(page.date_upd).getTime())) { -%>
Page last updated:
<time datetime="<%= new Date(page.date_upd).toISOString() %>"><%= shortDate(new Date(page.date_upd).toISOString()) %></time>
<br />
<% } -%>
</p>
<p>
<a rel="license"
class="licenseLink"
href="http://creativecommons.org/licenses/by-sa/4.0/">
<img
alt="Creative Commons NC-BY-SA 4.0 License"
class="licenseImg"
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png" />
</a>
Except where otherwise noted, content on this site is &copy; 2014-2023
<a
xmlns:cc="http://creativecommons.org/ns#"
href="<%=site.author.uri ?? '/'%>"
property="cc:attributionName"
rel="cc:attributionURL">
<%=site.author.name%></a>,
and is licensed under a
<a
rel="license"
href="/licenses/cc-by-sa/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
</p>
<p>
Background image by <a href="https://www.pexels.com/photo/programming-427722/">EMIL Ivanov / PEXELS</a>, used under the <a href="http://creativecommons.org/publicdomain/zero/1.0/">CC0 Public Domain License</a>.
</p>
<a href="#top" class="topLink">Back to Top</a>
</div>
</footer>
<!-- FOOTER END -->