jekyll-theme-so-simple 3.1.2 → 3.1.3
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/CHANGELOG.md +11 -1
- data/_includes/entry.html +1 -4
- data/_layouts/default.html +1 -1
- data/_sass/so-simple.scss +1 -1
- data/_sass/so-simple/_buttons.scss +1 -1
- data/_sass/so-simple/_entries.scss +16 -0
- data/_sass/so-simple/_notices.scss +6 -0
- data/assets/js/main.min.js +1 -1
- metadata +14 -36
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 01a82ccb7fd98527f85f9f34e34c0408e64620f0784ffed5946b8cf5fda04afb
|
|
4
|
+
data.tar.gz: '058e2935d04c870c066485851fb2f4daf53a43ef4921083bc45fb2c16f7c2cde'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12ad5a4a59023473e978d34fbc5f8383cfb9ba0e9aa966486a15cc9659b42cbf88ae75a8d9357ab99f07afdc3219d4cd1fdedb419c49c9c95910172f9372948e
|
|
7
|
+
data.tar.gz: 5b309f663253d1056a830c21e5436d96fbb3628b42ffb8f267fcfa1d9a2587b1e66d7e85c27f74e3697b065da90c81fe85cfac27554f4edc3917e3c934399cbe
|
data/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
7
|
|
|
8
|
-
## [3.1.
|
|
8
|
+
## [3.1.3] - 08-20-2019
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Relax Jekyll dependency to allow for version 4.0.
|
|
12
|
+
- Make entire entries and archive items "clickable"
|
|
13
|
+
- Remove redundant "Read more..." links on each entry.
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- Add accent color variants for buttons and notices. [#335](https://github.com/mmistakes/so-simple-theme/pull/335)
|
|
17
|
+
|
|
18
|
+
## [3.1.2] - 02-17-2019
|
|
9
19
|
|
|
10
20
|
### Changed
|
|
11
21
|
- Update GitHub issue templates.
|
data/_includes/entry.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<header class="entry-header">
|
|
9
9
|
<h3 class="entry-title p-name">
|
|
10
10
|
{% if entry.link %}
|
|
11
|
-
<a class="u-bookmark-of" href="{{ entry.link }}">{{ title }} <span class="link-arrow">→</span></a>
|
|
11
|
+
<a class="u-bookmark-of" href="{{ entry.link }}">{{ title }}</a> <a href="{{ entry.url | relative_url }}" rel="bookmark"><span class="link-arrow">→</span></a>
|
|
12
12
|
{% else %}
|
|
13
13
|
<a href="{{ entry.url | relative_url }}" rel="bookmark">{{ title }}</a>
|
|
14
14
|
{% endif %}
|
|
@@ -26,9 +26,6 @@
|
|
|
26
26
|
<div class="entry-excerpt p-summary">
|
|
27
27
|
{% if entry.excerpt %}
|
|
28
28
|
{{ entry.excerpt | markdownify }}
|
|
29
|
-
<div class="more-link">
|
|
30
|
-
<a href="{{ entry.url | relative_url }}">{{ site.data.text[site.locale].read_more | default: 'Read More' }}</a>
|
|
31
|
-
</div>
|
|
32
29
|
{% endif %}
|
|
33
30
|
</div>
|
|
34
31
|
{% endunless %}
|
data/_layouts/default.html
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<!--
|
|
3
|
-
So Simple Jekyll Theme 3.1.
|
|
3
|
+
So Simple Jekyll Theme 3.1.3
|
|
4
4
|
Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
|
|
5
5
|
Free for personal and commercial use under the MIT license
|
|
6
6
|
https://github.com/mmistakes/so-simple-theme/blob/master/LICENSE
|
data/_sass/so-simple.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* So Simple Jekyll Theme 3.1.
|
|
2
|
+
* So Simple Jekyll Theme 3.1.3
|
|
3
3
|
* Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
|
|
4
4
|
* Free for personal and commercial use under the MIT license
|
|
5
5
|
* https://github.com/mmistakes/so-simple-theme/blob/master/LICENSE
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
/* button colors */
|
|
32
|
-
$buttoncolors: (primary, $primary-color),
|
|
32
|
+
$buttoncolors: (primary, $primary-color), (accent, $accent-color), (inverse, #fff),
|
|
33
33
|
(light-outline, transparent), (success, $success-color),
|
|
34
34
|
(warning, $warning-color), (danger, $danger-color), (info, $info-color),
|
|
35
35
|
(facebook, $facebook-color), (twitter, $twitter-color),
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
.entry {
|
|
6
6
|
@include clearfix();
|
|
7
|
+
position: relative;
|
|
7
8
|
|
|
8
9
|
a {
|
|
9
10
|
color: inherit;
|
|
@@ -35,6 +36,15 @@
|
|
|
35
36
|
a {
|
|
36
37
|
text-decoration: none;
|
|
37
38
|
}
|
|
39
|
+
|
|
40
|
+
a[rel="bookmark"]::before {
|
|
41
|
+
content: '';
|
|
42
|
+
position: absolute;
|
|
43
|
+
left: 0;
|
|
44
|
+
top: 0;
|
|
45
|
+
right: 0;
|
|
46
|
+
bottom: 0;
|
|
47
|
+
}
|
|
38
48
|
}
|
|
39
49
|
|
|
40
50
|
.entry-image {
|
|
@@ -59,6 +69,12 @@
|
|
|
59
69
|
}
|
|
60
70
|
}
|
|
61
71
|
|
|
72
|
+
.entry-excerpt a,
|
|
73
|
+
.u-bookmark-of {
|
|
74
|
+
position: relative;
|
|
75
|
+
z-index: 10;
|
|
76
|
+
}
|
|
77
|
+
|
|
62
78
|
/*
|
|
63
79
|
Entries List Layout
|
|
64
80
|
========================================================================== */
|
data/assets/js/main.min.js
CHANGED
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-so-simple
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Rose
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-08-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '3.6'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '5.0'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: '3.6'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '5.0'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: jekyll-paginate
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -44,14 +50,14 @@ dependencies:
|
|
|
44
50
|
requirements:
|
|
45
51
|
- - "~>"
|
|
46
52
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '1.
|
|
53
|
+
version: '1.3'
|
|
48
54
|
type: :runtime
|
|
49
55
|
prerelease: false
|
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
57
|
requirements:
|
|
52
58
|
- - "~>"
|
|
53
59
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '1.
|
|
60
|
+
version: '1.3'
|
|
55
61
|
- !ruby/object:Gem::Dependency
|
|
56
62
|
name: jekyll-gist
|
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -72,28 +78,14 @@ dependencies:
|
|
|
72
78
|
requirements:
|
|
73
79
|
- - "~>"
|
|
74
80
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 0.
|
|
76
|
-
type: :runtime
|
|
77
|
-
prerelease: false
|
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
-
requirements:
|
|
80
|
-
- - "~>"
|
|
81
|
-
- !ruby/object:Gem::Version
|
|
82
|
-
version: 0.9.2
|
|
83
|
-
- !ruby/object:Gem::Dependency
|
|
84
|
-
name: jekyll-data
|
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
|
86
|
-
requirements:
|
|
87
|
-
- - "~>"
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version: '1.0'
|
|
81
|
+
version: '0.1'
|
|
90
82
|
type: :runtime
|
|
91
83
|
prerelease: false
|
|
92
84
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
85
|
requirements:
|
|
94
86
|
- - "~>"
|
|
95
87
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '1
|
|
88
|
+
version: '0.1'
|
|
97
89
|
- !ruby/object:Gem::Dependency
|
|
98
90
|
name: jekyll-seo-tag
|
|
99
91
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -108,20 +100,6 @@ dependencies:
|
|
|
108
100
|
- - "~>"
|
|
109
101
|
- !ruby/object:Gem::Version
|
|
110
102
|
version: '2.4'
|
|
111
|
-
- !ruby/object:Gem::Dependency
|
|
112
|
-
name: jemoji
|
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
|
114
|
-
requirements:
|
|
115
|
-
- - "~>"
|
|
116
|
-
- !ruby/object:Gem::Version
|
|
117
|
-
version: '0.8'
|
|
118
|
-
type: :runtime
|
|
119
|
-
prerelease: false
|
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
requirements:
|
|
122
|
-
- - "~>"
|
|
123
|
-
- !ruby/object:Gem::Version
|
|
124
|
-
version: '0.8'
|
|
125
103
|
- !ruby/object:Gem::Dependency
|
|
126
104
|
name: bundler
|
|
127
105
|
requirement: !ruby/object:Gem::Requirement
|