pvgttm-web/src/layouts/partials/footer.ejs

55 lines
2.0 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; 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.html">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
</p>
<p>
Fonts: <a href="https://fonts.google.com/specimen/Unbounded">Unbounded by NaN</a> and
<a href="https://fonts.google.com/specimen/Raleway">Raleway by Matt McInerney, Pablo Impallari, and Rodrigo Fuenzalida</a>;
both used under the SIL Open Font License, Version 1.1.
</p>
<p>
Background image created with <a href="https://labs.openai.com/" target="_blank">DALL-E</a> released under a <a href="/licenses/cc0">CC0</a> license.
</p>
<a href="#top" class="topLink">Back to Top</a>
</div>
</footer>
<!-- FOOTER END -->