-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.ftl
More file actions
136 lines (126 loc) · 3.78 KB
/
header.ftl
File metadata and controls
136 lines (126 loc) · 3.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<#--
Bolo - A stable and beautiful blogging system based in Solo.
Copyright (c) 2020-present, https://github.com/bolo-blog
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/>.
-->
<style type="text/css">
.halo-comment .comment-textarea textarea{
display:block;
}
.tags_bigger .tag{
font-size:13px;
}
.user__site {
display: inline-block;
height: 16px;
line-height: 16px;
border-bottom: 0;
margin: 8px 5px 0 0;
width: 16px;
}
.blog-slider__img{
margin-left: 20px;
width: 280px;
height: 178px;
}
.card-normal .card .card-image img{
margin-left: 13px;
}
#search,#search-m{
box-shadow: none;
border: 1px solid #e1e8ed;
border-radius: 5px;
box-sizing: border-box;
color:#657786;
resize: vertical;
height:30px;
}
.vditor-tooltipped {
border: none !important;
}
.vditor-toolbar{
padding-left: 15px !important;
}
.vditor-reset{
background-color:white !important;
}
.emoji{
width:20px;
}
.media-comment .media-content {
max-width: 170px;
overflow: hidden;
max-height: 90px;
}
.halo-comment {
min-width: 300px;
}
.blog-slider__content{
font-size: 12px;
}
.archive-year .fa-chevron-down, .archive-year .fa-chevron-up {
background-position: 54px -84px;
cursor: pointer;
height: 16px;
background-repeat: no-repeat;
}
#archiveSide .archive-year {
color: #a12f08ff;
font-weight: bold;
height: 18px;
line-height: 18px;
list-style: none;
}
</style>
<nav class="navbar navbar-main is-paddingless ">
<div class="container ">
<div class="navbar-brand transparent">
<a class="navbar-item navbar-logo" href="${servePath}" rel="start">
<img src="${faviconURL}" alt="${blogTitle!}" height="28"/>
${blogTitle!}
</a>
<span class="navbar-burger burger" data-target="navMenu">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navMenu" class="navbar-menu transparent">
<div class="navbar-start transparent">
<div class="navbar-start">
<#list pageNavigations as page>
<a class="navbar-item" href="${page.pagePermalink}" target="${page.pageOpenTarget}"
rel="section">
<#if page.pageIcon !=''><img class="page-icon" src="${page.pageIcon}"></#if>
${page.pageTitle}
</a>
</#list>
</div>
</div>
<div class="navbar-end">
<#if interactive == "on">
<#if isLoggedIn>
<a class="navbar-item" href="${servePath}/admin-index.do#main" title="${adminLabel}">
${adminLabel}
</a>
<a class="navbar-item" href="${logoutURL}">
${logoutLabel}
</a>
<#else>
<a class="navbar-item" href="${servePath}/start">
${startToUseLabel}
</a>
</#if>
</#if>
</div>
</div>
</nav>