footer.ejs 777 B

123456789101112131415161718192021
  1. <footer id="footer" class="clearfix">
  2. <div class="social-wrapper">
  3. <% if (theme.social) { %>
  4. <% theme.social.forEach(function(value, key) {
  5. if (value.url && value.slug) { %>
  6. <a href="<%= value.url %>" class="social <%= value.slug %>"
  7. target="_blank" rel="external">
  8. <span class="icon icon-<%= value.slug %>"></span>
  9. </a>
  10. <% } }); %>
  11. <% } %>
  12. </div>
  13. <div>Theme <a href='https://github.com/stkevintan/hexo-theme-material-flow' class="codename">MaterialFlow</a>
  14. designed by <a href="http://keyin.me/" target="_blank">Kevin Tan</a>.
  15. </div>
  16. <div><a href="http://www.miitbeian.gov.cn/">蜀ICP备19021585号-1</a></div>
  17. </footer>