jekyll-theme-classless-simple 0.4.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -21
- data/README.md +20 -1
- data/_layouts/home.html +1 -1
- data/_layouts/page.html +1 -1
- data/_layouts/post.html +1 -1
- metadata +6 -6
- /data/_layouts/{default.html → base.html} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0dcfb33ff9da2635a3652f172e6552fbdb72a2137cc79f8d6f60994dba52316b
|
4
|
+
data.tar.gz: fb72b113b9584862328b642f9252a1e7a63d0d5a9a452ccbfed514800e6a47d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eab86be9e5fdd2ab502085b9b5ae472aea6c4bb935752729674c4da324a62a40b3480bc2587fbe8566e77a97b15b567fcf1155ea6ebea994db800ce9f15b2872
|
7
|
+
data.tar.gz: 53b7c79a1365276a23287c04b22c6d30453d98687ecc144c9e37815d5e9734eff0c0e01d94d0978a996dd67f58e97f4065ea09994f4bcf4fca83ef0f54e38f3f
|
data/LICENSE.txt
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2021-
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
13
|
-
all copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
THE SOFTWARE.
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021-2023 toshimaru
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
@@ -42,7 +42,7 @@ $ bundle
|
|
42
42
|
```yml
|
43
43
|
# Specify theme
|
44
44
|
remote_theme: toshimaru/jekyll-theme-classless-simple
|
45
|
-
# Or
|
45
|
+
# Or,
|
46
46
|
# theme: jekyll-theme-classless-simple
|
47
47
|
|
48
48
|
classless-simple:
|
@@ -57,6 +57,9 @@ header_pages:
|
|
57
57
|
- about.md
|
58
58
|
- categories.html
|
59
59
|
|
60
|
+
# Specify your language (default: en)
|
61
|
+
# lang: en
|
62
|
+
|
60
63
|
# Comment form powered by Giscus
|
61
64
|
# You can get the following values here: https://giscus.app/
|
62
65
|
giscus:
|
@@ -71,6 +74,22 @@ giscus:
|
|
71
74
|
# theme: light
|
72
75
|
```
|
73
76
|
|
77
|
+
## Layouts
|
78
|
+
|
79
|
+
Refers to files within the `_layouts` directory, that define the markup for your theme.
|
80
|
+
|
81
|
+
- `base.html`: The base layout that lays the foundation for subsequent layouts.
|
82
|
+
- `home.html`: The layout for your landing-page / home-page / index-page.
|
83
|
+
- `post.html`: The layout for your posts.
|
84
|
+
- `page.html`: The layout for your documents that contain FrontMatter, but are not posts.
|
85
|
+
|
86
|
+
## Includes
|
87
|
+
|
88
|
+
- `footer.html`: Defines the site's footer section.
|
89
|
+
- `head.html`: Code-block that defines the `<head></head>` in *default* layout.
|
90
|
+
- `custom-head.html`: Placeholder to allow users to add more metadata to `<head />`.
|
91
|
+
- `header.html`: Defines the site's main header section.
|
92
|
+
|
74
93
|
## Plugins
|
75
94
|
|
76
95
|
This theme depends on:
|
data/_layouts/home.html
CHANGED
data/_layouts/page.html
CHANGED
data/_layouts/post.html
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-classless-simple
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- toshimaru
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '3.9'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name: jekyll-
|
28
|
+
name: jekyll-feed
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name: jekyll-
|
42
|
+
name: jekyll-seo-tag
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
@@ -82,7 +82,7 @@ files:
|
|
82
82
|
- _includes/google-analytics.html
|
83
83
|
- _includes/head.html
|
84
84
|
- _includes/header.html
|
85
|
-
- _layouts/
|
85
|
+
- _layouts/base.html
|
86
86
|
- _layouts/home.html
|
87
87
|
- _layouts/page.html
|
88
88
|
- _layouts/post.html
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
110
|
- !ruby/object:Gem::Version
|
111
111
|
version: '0'
|
112
112
|
requirements: []
|
113
|
-
rubygems_version: 3.
|
113
|
+
rubygems_version: 3.4.10
|
114
114
|
signing_key:
|
115
115
|
specification_version: 4
|
116
116
|
summary: Jekyll theme styled with Simple.css
|
File without changes
|