solo-skins/timeline/header.ftl

62 lines
2.3 KiB
Plaintext
Raw Permalink Normal View History

<#--
2018-08-23 09:08:13 +08:00
Solo - A small and beautiful blogging system written in Java.
2019-04-02 09:36:01 +08:00
Copyright (c) 2010-present, b3log.org
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/>.
-->
2013-04-24 10:04:04 +08:00
<!--[if lt IE 9]>
<script type="text/javascript">
(function () {
var element = ['time', 'article'];
for (var i = 0; i < element.length; i++) {
document.createElement(element[i]);
}
})();
</script>
<![endif]-->
<div class="header">
<div class="container fn-clear">
<div class="left">
<h1 class="title">
<a href="${servePath}">
${blogTitle}
</a>
</h1>
<span class="sub-title">${blogSubtitle}</span>
<span class="ico-list"></span>
2013-04-24 10:04:04 +08:00
</div>
<ul class="left">
<#list pageNavigations as page>
<li>
<a href="${page.pagePermalink}" target="${page.pageOpenTarget}"><#if page.pageIcon != ''><img class="page-icon" src="${page.pageIcon}"></#if>${page.pageTitle}</a>
2013-04-24 10:04:04 +08:00
</li>
</#list>
<li>
<a href="${servePath}/dynamic.html">${dynamicLabel}</a>
</li>
<li>
<a href="${servePath}/tags.html">${allTagsLabel}</a>
</li>
<li>
<a rel="alternate" href="${servePath}/rss.xml">RSS <img src="${staticServePath}/images/feed.png" alt="RSS"/></a>
2013-04-24 10:04:04 +08:00
</li>
</ul>
2017-09-12 23:34:23 +08:00
<form class="right" action="${servePath}/search">
<input placeholder="${searchLabel}" id="search" type="text" name="keyword" />
2015-08-03 17:03:39 +08:00
<input type="submit" value="" class="none" />
2013-04-24 10:04:04 +08:00
</form>
</div>
2013-01-31 10:54:47 +08:00
</div>