jekyll-zeta 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +1 -1
- data/_includes/navbar.html +2 -2
- data/_layouts/tags.html +1 -1
- data/_sass/jekyll-zeta.scss +10 -9
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: baed2725fd84d0e3789c502b5dbfd514ef1a9f35114f36562a2b33732976da76
|
4
|
+
data.tar.gz: 1dea39385d1906e0db75cf36dabd4e9a3d9d4b38a1c3384529524ba51a79d26e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8da4e5c905dacc4ed4ac4b4c98d525966fbef60f6d019659e377f503c17741c1dd034cf1fce21a0f68fa208d22a036c58e08e42a62cc608a0abbb8fe6e5b8855
|
7
|
+
data.tar.gz: 63e377486df95b831f14ccf78164c1e0bf2a5efbabcf2a90e8e17b0122b8ffa7f3c2ce3fb3cdfbe29eff653fcb2f65ff79b65e0519853774db0697d37854a80d
|
data/_config.yml
CHANGED
@@ -28,7 +28,7 @@ theme_config:
|
|
28
28
|
all_tags_title: All Tags
|
29
29
|
archive_date_format: "%Y"
|
30
30
|
archive_title_date_format: "%m/%d"
|
31
|
-
tags_layout_style: '
|
31
|
+
tags_layout_style: 'flat' # flat auto list
|
32
32
|
combine_css_html: false
|
33
33
|
show_more_text: 'show more ...'
|
34
34
|
next_page_title: "next"
|
data/_includes/navbar.html
CHANGED
@@ -23,9 +23,9 @@
|
|
23
23
|
{%- endif %}
|
24
24
|
|
25
25
|
{%- if iscurrent == true -%}
|
26
|
-
<
|
26
|
+
<a href="{{ itemurl }}" class="curNav">{{ item.title }}</a>
|
27
27
|
{%- else -%}
|
28
|
-
<a href="{{ itemurl }}">{{ item.title }}</a>
|
28
|
+
<a href="{{ itemurl }}" class="nav">{{ item.title }}</a>
|
29
29
|
{%- endif - -%}
|
30
30
|
|
31
31
|
{%- else -%}
|
data/_layouts/tags.html
CHANGED
@@ -43,7 +43,7 @@ layout: default
|
|
43
43
|
{%- capture counter -%}{%- increment counter -%} {%- endcapture -%}
|
44
44
|
|
45
45
|
|
46
|
-
<text><a href ="{{'/tags'|relative_url}}/{{ tagname}}.html" >{{ tagname}}</a> <sup>{{ tagnameCount }}</sup></text>
|
46
|
+
<text><a class="tags-tag" href ="{{'/tags'|relative_url}}/{{ tagname}}.html" >{{ tagname}}</a> <sup>{{ tagnameCount }}</sup></text>
|
47
47
|
|
48
48
|
{%- endfor -%}
|
49
49
|
{%- else -%}
|
data/_sass/jekyll-zeta.scss
CHANGED
@@ -126,15 +126,7 @@ a {
|
|
126
126
|
margin-right: 1rem;
|
127
127
|
font-size: 1.125rem;
|
128
128
|
}
|
129
|
-
.navli a{
|
130
|
-
color: $color-black;
|
131
|
-
}
|
132
|
-
.curNav {
|
133
|
-
color: $color-blue;
|
134
|
-
font-size: 1.2em;
|
135
129
|
|
136
|
-
}
|
137
|
-
|
138
130
|
.postlistul {
|
139
131
|
padding: 0
|
140
132
|
}
|
@@ -148,7 +140,7 @@ a {
|
|
148
140
|
|
149
141
|
}
|
150
142
|
|
151
|
-
.postlistli a,.pagebar a {
|
143
|
+
.postlistli a,.pagebar a ,.tags-tag{
|
152
144
|
color: #000;
|
153
145
|
}
|
154
146
|
|
@@ -218,3 +210,12 @@ a:hover {
|
|
218
210
|
text-decoration: underline;
|
219
211
|
color:$color-hove;
|
220
212
|
}
|
213
|
+
|
214
|
+
.curNav {
|
215
|
+
color: $color-blue;
|
216
|
+
font-size: 1.2em;
|
217
|
+
}
|
218
|
+
|
219
|
+
.nav{
|
220
|
+
color: $color-black;
|
221
|
+
}
|