footer.ejs 370 B

1234567891011
  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. &copy; <%= date(new Date(), 'YYYY') %> <%= config.author || config.title %><br>
  8. <%= __('powered_by') %> <a href="http://hexo.io/" target="_blank">Hexo</a>
  9. </div>
  10. </div>
  11. </footer>