100 lines
3.5 KiB
Plaintext
100 lines
3.5 KiB
Plaintext
<#--
|
|
|
|
Solo - A small and beautiful blogging system written in Java.
|
|
Copyright (c) 2010-2019, b3log.org & hacpai.com
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
<div id="footer" class="">
|
|
<div class="container">
|
|
<div class="span3">
|
|
<h3>NOTIC</h3>
|
|
<div>
|
|
<i class="icon-leaf"></i> ${noticeBoard}
|
|
</div>
|
|
</div>
|
|
<div class="span3">
|
|
<h3>${allTagsLabel }</h3>
|
|
<div>
|
|
<ul class="unstyled">
|
|
<#list mostUsedTags as tag>
|
|
<li style="float: left;">
|
|
<a rel="tag" title="${tag.tagTitle}(${tag.tagPublishedRefCount})" href="${servePath}/tags/${tag.tagTitle?url('UTF-8')}">
|
|
${tag.tagTitle}(${tag.tagPublishedRefCount}) </a>
|
|
</li>
|
|
</#list>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="span3">
|
|
<h3>${linkLabel}</h3>
|
|
<div>
|
|
<ul class="unstyled">
|
|
<#list links as link>
|
|
<li style="float: left;">
|
|
<span class="left">
|
|
<a rel="friend" href="${link.linkAddress}" title="${link.linkTitle}" target="_blank" >
|
|
<img alt="${link.linkTitle}"
|
|
src="http://www.google.com/s2/u/0/favicons?domain=<#list link.linkAddress?split('/') as x><#if x_index=2>${x}<#break></#if></#list>" /> ${link.linkTitle}
|
|
</a>
|
|
</span>
|
|
</li>
|
|
</#list>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="span3" style="width: 240px;">
|
|
<div style="margin-top: 13px;">
|
|
© 2012 <a href="http://${blogHost}">${blogTitle}</a><br>
|
|
Powered By <a href="http://www.b3log.org/">B3log</a><br>
|
|
Theme by <a href="http://www.idashu.me">idashu</a><br>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
var latkeConfig = {
|
|
"servePath": "${servePath}",
|
|
"staticServePath": "${staticServePath}"
|
|
};
|
|
var Label = {
|
|
"markedAvailable": ${markedAvailable?c},
|
|
"hljsStyle": "atom-one-light",
|
|
"langLabel": "${langLabel}",
|
|
"tag1Label": "${tag1Label}",
|
|
"viewLabel": "${viewLabel}",
|
|
"commentLabel": "${commentLabel}",
|
|
"topArticleLabel": "${topArticleLabel}",
|
|
"updatedLabel": "${updatedLabel}",
|
|
"contentLabel": "${contentLabel}",
|
|
"abstractLabel": "${abstractLabel}",
|
|
"clearAllCacheLabel": "${clearAllCacheLabel}",
|
|
"clearCacheLabel": "${clearCacheLabel}",
|
|
"adminLabel": "${adminLabel}",
|
|
"logoutLabel": "${logoutLabel}",
|
|
"skinDirName": "${skinDirName}",
|
|
};
|
|
</script>
|
|
<script type="text/javascript" src="${staticServePath}/skins/${skinDirName}/js/jquery.js" charset="utf-8"></script>
|
|
<script type="text/javascript" src="${staticServePath}/skins/${skinDirName}/js/bootstrap.js" charset="utf-8"></script>
|
|
<script type="text/javascript" src="${staticServePath}/skins/${skinDirName}/js/bootstrap-tooltip.js" charset="utf-8"></script>
|
|
<script type="text/javascript" src="${staticServePath}/js/common${miniPostfix}.js?${staticResourceVersion}" charset="utf-8"></script>
|
|
<script type="text/javascript">
|
|
$(".tooltipLink").tooltip({
|
|
html : true
|
|
});
|
|
Util.init();
|
|
</script>
|
|
${plugins} |