jekyll-theme-minimalism 0.1.6 → 0.1.7
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 +14 -1
- data/_layouts/index.html +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c66e408111065599de7a1ec00ff65ccfd53134abfd149f4e5848e10c5960cbfe
|
|
4
|
+
data.tar.gz: a3839ffcc99daa9f5016c276e0947b27bcd280bb018b55cb533f81bdd58f026b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eac07b8e05b5621f0309d15001184cfa669319e7a006606e2ed13d99fe95cbdc3cdbc67b605f241cff988dd43a96bc4657f9028afc7296489b09ddadf6bea6bc
|
|
7
|
+
data.tar.gz: 7cff92a4d1592e893d1c0c5a1230912a99824e27a83e1975750de36d1f244e79df72acce30fc25a4e54935103af4d0a69d07897c834b3aaaf8e6993242487537
|
data/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Minimalism
|
|
2
2
|
|
|
3
|
+
[](https://travis-ci.org/showzeng/Minimalism)
|
|
4
|
+
[](https://jekyllrb.com/)
|
|
5
|
+
[](https://badge.fury.io/rb/jekyll-theme-minimalism)
|
|
6
|
+
[](./LICENSE.txt)
|
|
7
|
+
|
|
3
8
|

|
|
4
9
|
|
|
5
10
|
Minimalism 是一款基于 Jekyll 为极简主义者打造的极简主题。你可以访问 [我的博客][blog] 或者 [主题 demo][demo] 来预览一下。
|
|
@@ -70,7 +75,15 @@ remote_theme: showzeng/Minimalism
|
|
|
70
75
|
|
|
71
76
|
## Change log
|
|
72
77
|
|
|
73
|
-
**V0.1.
|
|
78
|
+
**V0.1.7 (2018/08/12 22:12)**
|
|
79
|
+
- 修改 gem 包依赖
|
|
80
|
+
- 稳定版本
|
|
81
|
+
|
|
82
|
+
**V0.1.6 (2018/08/12 16:47)**
|
|
83
|
+
- 修复 gitment 的评论字体样式
|
|
84
|
+
- 加入持续集成测试
|
|
85
|
+
|
|
86
|
+
**V0.1.5 (2018/08/12 11:36)**
|
|
74
87
|
- 修复 gitment 模板语法错误
|
|
75
88
|
- gitment 可正常使用
|
|
76
89
|
|
data/_layouts/index.html
CHANGED
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
<body>
|
|
22
22
|
<div class="index-avatar">
|
|
23
23
|
{% if site.avatar %}
|
|
24
|
-
<a href="/articles"><img src="{{ site.avatar }}"></a>
|
|
24
|
+
<a href="/articles"><img src="{{ site.avatar }}" alt="avatar"></a>
|
|
25
25
|
{% else %}
|
|
26
26
|
{% assign image_files = site.static_files | where: "image", true %}
|
|
27
27
|
{% for image in image_files %}
|
|
28
28
|
{% if image.basename == 'avatar' %}
|
|
29
|
-
<a href="/articles"><img src="{{ image.path }}"></a>
|
|
29
|
+
<a href="/articles"><img src="{{ image.path }}" alt="avatar"></a>
|
|
30
30
|
{% endif %}
|
|
31
31
|
{% endfor %}
|
|
32
32
|
{% endif %}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-minimalism
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- showzeng
|
|
@@ -81,19 +81,19 @@ dependencies:
|
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '1.16'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
84
|
+
name: html-proofer
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '
|
|
89
|
+
version: '3.0'
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '
|
|
96
|
+
version: '3.0'
|
|
97
97
|
description:
|
|
98
98
|
email:
|
|
99
99
|
- kingstageshow@gmail.com
|