zslucky 0.5.1 → 0.5.2
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/README.md +21 -1
- data/_includes/head.html +1 -0
- data/_includes/sidebar.html +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4a0f8043e90fe6a930ef69e6beaacbea3d9737e
|
4
|
+
data.tar.gz: 1abecebc3d2381f96e8d7de8d1ab16361b97c45c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e5f50d72fca6f69f0b7e183abf4d365813064062d698d15443aafa770c00ff9429eb33cdd21ca698557ff9f079ad9599c8fff4983e55abfd532d76c4aa189ed
|
7
|
+
data.tar.gz: 8de72d650de5a253563140711c3200fca15d023771e1778d8bdfd5812f5d1f785e93ec8051bd0cc1216560542bcb19660e6ceb19f78af645a8b26d756b45ee10
|
data/README.md
CHANGED
@@ -28,7 +28,25 @@ Or install it yourself as:
|
|
28
28
|
|
29
29
|
## Usage
|
30
30
|
|
31
|
-
|
31
|
+
|
32
|
+
Only need to add follow settings in `_config` yaml file:
|
33
|
+
|
34
|
+
```yaml
|
35
|
+
# username is your name
|
36
|
+
username: Lucky Zhou
|
37
|
+
# your avator from assets
|
38
|
+
avator_url: /assets/img/avator.jpg
|
39
|
+
# your job title
|
40
|
+
jobtitle: Front-end Engineer.
|
41
|
+
# your qq number
|
42
|
+
qq: 444950680
|
43
|
+
# your weixin number
|
44
|
+
weixin: Zsney88
|
45
|
+
# your weibo number
|
46
|
+
weibo: zsney88
|
47
|
+
# yourselfs short description
|
48
|
+
user_desc: Like open source projects, like sharing.
|
49
|
+
```
|
32
50
|
|
33
51
|
## Contributing
|
34
52
|
|
@@ -46,3 +64,5 @@ When your theme is released, only the files in `_layouts`, `_includes`, and `_sa
|
|
46
64
|
|
47
65
|
The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
48
66
|
|
67
|
+
## TODO
|
68
|
+
1. To support custom syntax highlist config.
|
data/_includes/head.html
CHANGED
@@ -11,6 +11,7 @@
|
|
11
11
|
|
12
12
|
<!-- style sheets here -->
|
13
13
|
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
14
|
+
<link rel="stylesheet" href="{{ "/assets/colorful.css" | relative_url }}">
|
14
15
|
<!-- normalize.css -->
|
15
16
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" crossorigin="anonymous">
|
16
17
|
<!-- Latest compiled and minified CSS -->
|
data/_includes/sidebar.html
CHANGED
@@ -29,7 +29,7 @@
|
|
29
29
|
<div class="panel panel-default">
|
30
30
|
<!-- Default panel contents -->
|
31
31
|
<div class="panel-heading">
|
32
|
-
<i class="fa fa-list" aria-hidden="true"></i>
|
32
|
+
<i class="fa fa-list" aria-hidden="true"></i> Categories
|
33
33
|
</div>
|
34
34
|
<!-- List group -->
|
35
35
|
<div class="list-group">
|