You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.5 KiB
32 lines
1.5 KiB
2 years ago
|
<footer class="main-footer footer-type-1 text-xs">
|
||
|
<div id="footer-tools" class="d-flex flex-column">
|
||
|
<a href="javascript:" id="go-to-up" class="btn rounded-circle go-up m-1" rel="go-top">
|
||
|
<i class="iconfont icon-to-up"></i>
|
||
|
</a>
|
||
|
<!-- 右下角搜索 -->
|
||
|
<a href="javascript:" data-toggle="modal" data-target="#search-modal" class="btn rounded-circle m-1"
|
||
|
rel="search" one-link-mark="yes">
|
||
|
<i class="iconfont icon-search"></i>
|
||
|
</a>
|
||
|
<!-- 右下角搜索 end -->
|
||
|
{{ if $.Site.Params.nightMode }}
|
||
|
<a href="javascript:" onclick="window.location.href='javascript:switchNightMode()'"
|
||
|
class="btn rounded-circle switch-dark-mode m-1" id="yejian"
|
||
|
data-toggle="tooltip" data-placement="left" title="夜间模式">
|
||
|
<i class="mode-ico iconfont icon-light"></i>
|
||
|
</a>
|
||
|
{{ else }}
|
||
|
<a href="javascript:" onclick="window.location.href='javascript:switchNightMode()'"
|
||
|
class="btn rounded-circle switch-dark-mode m-1" id="yejian"
|
||
|
data-toggle="tooltip" data-placement="left" title="日间模式">
|
||
|
<i class="mode-ico iconfont icon-night"></i>
|
||
|
</a>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
<div class="footer-inner">
|
||
|
<div class="footer-text">{{ replace $.Site.Params.footer.copyright "{year}" now.Year | markdownify }}</div>
|
||
|
</div>
|
||
|
</footer>
|
||
|
</div><!-- main-content end -->
|
||
|
</div><!-- page-container end -->
|