jekyll-theme-gaeblogx 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/css/main.scss +57 -0
- data/search_data.json +15 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 290ca03ddbf5b538575f132f00f22b6f94f64c0d
|
|
4
|
+
data.tar.gz: b8c47dd4bb9766f15218d5fa88eb828f6778e6df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9696ac960a25f0e58b5d366e7140f14fc4be9932df79ef3c83c0d3d4ad6215af2e5cfbaf19d72f0e03fb259f21d7c915b1552676d1961fce897083512e2e58dd
|
|
7
|
+
data.tar.gz: 61f8c29b4834ae8ebea60db56759bef27ae4e040749a6a8aa0ef0121723d2f35388911a5c8d86a716c19b3c390585a126d3d74b1861ef38f2f7541775ac1cac3
|
data/css/main.scss
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Only the main Sass file needs front matter (the dashes are enough)
|
|
3
|
+
---
|
|
4
|
+
@charset "utf-8"; //
|
|
5
|
+
//
|
|
6
|
+
//
|
|
7
|
+
// // Our variables
|
|
8
|
+
// $base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
9
|
+
// $base-font-size: 16px;
|
|
10
|
+
// $base-font-weight: 400;
|
|
11
|
+
// $small-font-size: $base-font-size * 0.875;
|
|
12
|
+
// $base-line-height: 1.5;
|
|
13
|
+
//
|
|
14
|
+
// $spacing-unit: 30px;
|
|
15
|
+
//
|
|
16
|
+
// $text-color: #111;
|
|
17
|
+
// $background-color: #fdfdfd;
|
|
18
|
+
// $brand-color: #2a7ae2;
|
|
19
|
+
//
|
|
20
|
+
// $grey-color: #828282;
|
|
21
|
+
// $grey-color-light: lighten($grey-color, 40%);
|
|
22
|
+
// $grey-color-dark: darken($grey-color, 25%);
|
|
23
|
+
//
|
|
24
|
+
// // Width of the content area
|
|
25
|
+
// $content-width: 800px;
|
|
26
|
+
//
|
|
27
|
+
// $on-palm: 600px;
|
|
28
|
+
// $on-laptop: 800px;
|
|
29
|
+
//
|
|
30
|
+
//
|
|
31
|
+
//
|
|
32
|
+
// // Use media queries like this:
|
|
33
|
+
// // @include media-query($on-palm) {
|
|
34
|
+
// // .wrapper {
|
|
35
|
+
// // padding-right: $spacing-unit / 2;
|
|
36
|
+
// // padding-left: $spacing-unit / 2;
|
|
37
|
+
// // }
|
|
38
|
+
// // }
|
|
39
|
+
// @mixin media-query($device) {
|
|
40
|
+
// @media screen and (max-width: $device) {
|
|
41
|
+
// @content;
|
|
42
|
+
// }
|
|
43
|
+
// }
|
|
44
|
+
/*
|
|
45
|
+
* variables
|
|
46
|
+
*/
|
|
47
|
+
// Import partials from `sass_dir` (defaults to `_sass`)
|
|
48
|
+
@import "reset", "header", "post", "page", "syntax-highlighting", "index", "demo", "footer", "scrollbar", "backToTop";
|
|
49
|
+
// 两个人在列车上相遇
|
|
50
|
+
// 一段旅程充满了诗意
|
|
51
|
+
// 你突然说你要下车
|
|
52
|
+
// 去寻找属于你的灵魂和身体
|
|
53
|
+
//
|
|
54
|
+
// 当你穷的只剩下理想时
|
|
55
|
+
// 就再次回到这列车上
|
|
56
|
+
// 我们谈天说地
|
|
57
|
+
// 把酒言欢,赠予你新路途纹银
|
data/search_data.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: null
|
|
3
|
+
---
|
|
4
|
+
[
|
|
5
|
+
{% for post in site.posts %}
|
|
6
|
+
{
|
|
7
|
+
"title" : "{{ post.title | escape }}",
|
|
8
|
+
"category" : "{{ post.categories | join: ', ' }}",
|
|
9
|
+
"tags" : "{{ post.tags | join: ', ' }}",
|
|
10
|
+
"content": {{ post.content | strip_html | strip_newlines | jsonify }},
|
|
11
|
+
"url" : "{{ site.baseurl }}{{ post.url }}",
|
|
12
|
+
"date" : "{{ post.date }}"
|
|
13
|
+
} {% unless forloop.last %},{% endunless %}
|
|
14
|
+
{% endfor %}
|
|
15
|
+
]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-gaeblogx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Baby Pepper
|
|
@@ -228,6 +228,7 @@ files:
|
|
|
228
228
|
- assets/sys-call1.c
|
|
229
229
|
- assets/sys-call2.c
|
|
230
230
|
- assets/赫炎1.PNG
|
|
231
|
+
- css/main.scss
|
|
231
232
|
- feed.xml
|
|
232
233
|
- index.html
|
|
233
234
|
- js/jekyll-search.min.js
|
|
@@ -243,6 +244,7 @@ files:
|
|
|
243
244
|
- page/2tags.html
|
|
244
245
|
- page/3search.html
|
|
245
246
|
- page/4about.md
|
|
247
|
+
- search_data.json
|
|
246
248
|
homepage: https://github.com/SeraphRoy/GaeBlogx
|
|
247
249
|
licenses:
|
|
248
250
|
- MIT
|
|
@@ -266,5 +268,5 @@ rubyforge_project:
|
|
|
266
268
|
rubygems_version: 2.5.1
|
|
267
269
|
signing_key:
|
|
268
270
|
specification_version: 4
|
|
269
|
-
summary:
|
|
271
|
+
summary: 'Jekyll theme with: tags, categories, archives, and searches'
|
|
270
272
|
test_files: []
|