footer.ejs 467 B

1234567891011121314
  1. <footer id="footer">
  2. <% if (theme.sidebar === 'bottom'){ %>
  3. <%- partial('_partial/sidebar') %>
  4. <% } %>
  5. <div class="outer">
  6. <div id="footer-info" class="inner">
  7. <% if (theme.copyright){ %>
  8. <%- render(theme.copyright, 'pug'); %>
  9. <% } %>
  10. &copy; <%= date(new Date(), 'YYYY') %> <%= config.author || config.title %><br>
  11. <%= __('powered_by') %> <a href="https://hexo.io/" target="_blank">Hexo</a>
  12. </div>
  13. </div>
  14. </footer>