jekyll-theme-classless-simple 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b5f36c031ea6c070d90a6b735e8337a1d7a17845730da2c96fe95e1f993e9ff1
4
- data.tar.gz: 33303d3e22fe4ee268ce4e38b105af834f76a9c8dd7350cd9a395a5de58bb17c
3
+ metadata.gz: 921e3964342186e066ac2a58fc4683a7041f8e7a3d76decc62fe50e318824f31
4
+ data.tar.gz: e718983e9c1c716c4734eb50eace700009b0305540fdf3e43e21dc9eb213eae5
5
5
  SHA512:
6
- metadata.gz: b1521e2524712bee93ff8e3391dfaa9584848359608baab36a2c8ec5c78c1ab8eacc49e689295e2ea84e4e4d931b2f29555f3eb1f94ae727de70d69d357e55d8
7
- data.tar.gz: af38140673a1f8eb44d8ae5b916b9bf1ff4f8b5d4c6b73258d447f48d6f3c68cb84090f28c9d09e6a68230dbf48f7c3e73ff66d380ed86ee22c1d77ebc43f3f7
6
+ metadata.gz: ed10eb3333701247245d8a198c6843e44ccdb4bc2099fdfb168d05be6e0afd4d08a29d1fe48a10d6c8888007fe3c44e2845f30a9b8f52b92331367447df1812c
7
+ data.tar.gz: 9259acfa5b37a304b3ff65bdce5f5180c49b2fbf2eb84eb38e04c94fc13a7c4ad5a446c80073f290b6bebbfed48e9437f1fcae2430ca41714bcee34b90cb5ad2
data/LICENSE.txt CHANGED
@@ -1,21 +1,21 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2021-2022 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.
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021-2022 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 if you install gem,
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
@@ -1,5 +1,5 @@
1
1
  ---
2
- layout: default
2
+ layout: base
3
3
  ---
4
4
 
5
5
  <div class="home">
data/_layouts/page.html CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
- layout: default
2
+ layout: base
3
3
  ---
4
4
 
5
5
  <div class="post">
data/_layouts/post.html CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
- layout: default
2
+ layout: base
3
3
  ---
4
4
 
5
5
  <div class="post">
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.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - toshimaru
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-08 00:00:00.000000000 Z
11
+ date: 2023-05-13 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-seo-tag
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-feed
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/default.html
85
+ - _layouts/base.html
86
86
  - _layouts/home.html
87
87
  - _layouts/page.html
88
88
  - _layouts/post.html
@@ -103,14 +103,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
103
103
  requirements:
104
104
  - - ">="
105
105
  - !ruby/object:Gem::Version
106
- version: 2.7.0
106
+ version: 3.0.0
107
107
  required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  requirements:
109
109
  - - ">="
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
112
  requirements: []
113
- rubygems_version: 3.3.7
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