Major update - simpler file structure, better layouts, moar content
This commit is contained in:
51
src/layouts/partials/footer.ejs
Normal file
51
src/layouts/partials/footer.ejs
Normal file
@@ -0,0 +1,51 @@
|
||||
|
||||
<!-- 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 © 2014-2022
|
||||
<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="http://creativecommons.org/licenses/by-sa/4.0/">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 -->
|
||||
Reference in New Issue
Block a user