halo-theme-Single/footer.ftl

83 lines
4.3 KiB
Plaintext
Raw Normal View History

2022-04-14 21:48:19 +08:00
<footer>
2022-04-15 21:53:07 +08:00
<div class="buttons">
2022-04-14 21:48:19 +08:00
<a class="to-top" href="#"></a>
</div>
<div class="wrap min">
<#if settings.widget_set!true>
<section class="widget">
<div class="row">
<div class="col-m-4">
<h3 class="title-recent">最新文章:</h3>
<ul>
<@postTag method="latest" top="6">
<#list posts as post>
<li>
<a href="${post.fullPath!}" target="_blank">${post.title!}</a>
</li>
</#list>
</@postTag>
</ul>
</div>
<div class="col-m-4">
<#--存在问题 -->
<h3 class="title-date">时光机:</h3>
<ul>
2022-04-18 22:06:41 +08:00
<@postTag method="archiveMonth" >
<#list archives as archive>
2022-04-14 21:48:19 +08:00
<li>
<a href="${archive.fullPath!}" rel="nofollow" target="_blank">${archive.year?c} 年${archive.month?c} 月</a>
</li>
2022-04-18 22:06:41 +08:00
<#if ((archive?counter)?eval==6)>
<#break>
</#if>
2022-04-14 21:48:19 +08:00
</#list>
</@postTag>
</ul>
</div>
<div class="col-m-4">
2022-04-18 22:06:41 +08:00
<#--存在问题点击超链接后不能跳转到评论模块 -->
2022-04-14 21:48:19 +08:00
<h3 class="title-comments">最近评论:</h3>
<ul>
<@commentTag method="latest" top="6">
<#list comments.content as comment>
2022-04-18 22:06:41 +08:00
<li>${comment.author!} <a href="${comment.post.fullPath!}#${comment.id!}" rel="nofollow" target="_blank">${comment.content!}</a></li>
2022-04-14 21:48:19 +08:00
</#list>
</@commentTag>
</ul>
</div>
</div>
</#if>
<section class="sub-footer">
2022-05-28 00:36:30 +08:00
<p>© ${.now?string("yyyy")} <a href="${blog_url!}">${(user.nickname)!}</a>. All Rights Reserved. Theme By <a href="https://github.com/Dreamer-Paul/Single" target="_blank" rel="nofollow">Single</a>.
<a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=${settings.footer_ga_select_number!}" target="_blank">黔ICP备2020009371号-1</a></p>
<div class="github-badge">
<a style="color: #fff" rel="license" href="http://halo.run" target="_blank" title="由 Halo 驱动" data-pjax-state="">
<span class="badge-subject">Powered</span><span class="badge-value bg-blue">Halo</span>
</a>
</div>
<div class="github-badge">
<a style="color: #fff" rel="license" href="https://github.com/Dreamer-Paul/Single" target="_blank" title="本站主题为 Sakura 主题" data-pjax-state="">
<span class="badge-subject">Theme</span><span class="badge-value bg-red">Single</span>
</a>
</div>
<div class="github-badge">
<a style="color: #fff" rel="license" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral" target="_blank" title="CDN" data-pjax-state="">
<span class="badge-subject">CDN</span><span class="badge-value bg-brightgreen">又拍云</span>
</a>
</div>
<div class="github-badge">
<span class="badge-subject">访客数</span><span class="badge-value bg-orange" id="busuanzi_value_site_uv" target="_blank" title="本站访客量"></span>
</div>
<div class="github-badge">
<span class="badge-subject">访问量</span><span class="badge-value bg-orange" id="busuanzi_value_site_pv" target="_blank" title="本站浏览量"></span>
</div>
<div class="github-badge">
<span class="badge-subject">本站勉勉强强运行</span><span class="badge-value bg-blueviolet" target="_blank" title="本站已运行" id="span_dt_dt"></span>
</div>
2022-04-14 21:48:19 +08:00
</section>
</div>
</footer>
<@global.footer />
2022-06-22 00:55:06 +08:00
<#include "module/module_js.ftl"/>
2022-04-14 21:48:19 +08:00
</body>
2022-06-22 00:55:06 +08:00
</html>