functionlayoutDiv() { var el = '' el += `<footer class="page-footer${scrollreveal(' ')} footnote">` el += '<hr>' // sitemap if (theme.footer.sitemap && Object.keys(theme.footer.sitemap).length > 0) { el += '<div class="sitemap">' for (let group ofObject.keys(theme.footer.sitemap)) { let items = theme.footer.sitemap[group] if (items == undefined || items.length == 0) { continue } el += '<div class="sitemap-group">' el += '<span class="fs15">' + group + '</span>' items.forEach((item, i) => { el += '<a href="' + url_for(md_link(item)) + '">' el += __(md_text(item)) el += '</a>' }); el += '</div>' } el += '</div>' } // footer content el += '<div class="footer-content">' if (content) { el += markdown(content) } el += '<span id="runtime_span"></span>' el += '</div></footer>' return el } %> <%- layoutDiv() %>
<script type="text/javascript"> function show_runtime() { window.setTimeout(show_runtime, 1000);
const startDate = new Date("2023/05/10 17:00:00"); const currentDate = new Date(); const timeDifference = currentDate - startDate;