hexo-theme-keep/layout/_partial/footer.ejs

26 lines
1.3 KiB
Plaintext
Raw Normal View History

<footer class="footer">
<div class="info-container">
<div class="copyright-info info-item">
&copy; <%= date(new Date(), 'YYYY') %> <a href="/"><%= config.author %></a>
</div>
<div class="theme-info info-item">
<%- __('powered_by', '<a target="_blank" href="https://hexo.io">Hexo</a>') %> | <%- __('theme') %> <a
href="https://github.com/XPoet/hexo-theme-ils" target="_blank"><%= theme.theme_info.name %> v<%= theme.theme_info.version %></a>
</div>
2020-04-30 12:24:57 +08:00
<% if (theme.website_count.busuanzi_count.enable) { %>
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<div class="website-count info-item">
2020-04-30 12:24:57 +08:00
<% if (theme.website_count.busuanzi_count.site_uv) { %>
<span id="busuanzi_container_site_uv" style="display: none">
<%- __('site_uv') %><span id="busuanzi_value_site_uv"></span>
</span>
<% } %>
2020-04-30 12:24:57 +08:00
<% if (theme.website_count.busuanzi_count.site_pv) { %>
<span id="busuanzi_container_site_pv" style="display: none">
<%- __('site_pv') %><span id="busuanzi_value_site_pv"></span>
</span>
<% } %>
</div>
<% } %>
</div>
</footer>