jekyll-theme-paikblog 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b3fe516a7f997208bd137bf6f3180e978e9e626de4b31f6875d32c9a0281eea2
4
+ data.tar.gz: 7a16714376552901d00c6867dc9277046ca0c03a3752f0461070129baeb4b3ba
5
+ SHA512:
6
+ metadata.gz: 33a7487a726b855e537e3733690e4de060d084d98bd08beea1e42e0bacdbda7ada7605daf5fd4e9a9d34ebeb07ebe73689f1ec78741fe618a6191c31d32e7978
7
+ data.tar.gz: c2984ff471d06971f7651e7167f4fe880083c7b2db23cb5ba3bab4abcadc4a9869d1ddafb16f04432378391caa0d680d6111a3f34280a61daa385d63efeed9e9
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 paikwiki
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.
@@ -0,0 +1,84 @@
1
+ # Paikblog
2
+
3
+ Jekyll theme for [paikwiki.github.io](https://paikwiki.github.io).
4
+
5
+ ## Installation
6
+
7
+ Add this line to your Jekyll site's `Gemfile`:
8
+
9
+ ```ruby
10
+ gem "jekyll-theme-paikblog"
11
+ ```
12
+
13
+ And add this line to your Jekyll site's `_config.yml`:
14
+
15
+ ```yaml
16
+ theme: jekyll-theme-paikblog
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install jekyll-theme-paikblog
26
+
27
+ ## Usage
28
+
29
+ ### Configuration
30
+
31
+ ADD below data on `_config.yml`.
32
+
33
+ ```yml
34
+ title: SITE_TITLE
35
+ description: SITE_DESCRIPTION
36
+ author:
37
+ name: AUTHOR_NAME
38
+ email: EMAIL@EXAMPLE.COM
39
+ copyright_year: YEAR
40
+ ```
41
+
42
+ ### Main page
43
+
44
+ Create `index.html` with below:
45
+
46
+ ```html
47
+ ---
48
+ layout: default
49
+ ---
50
+
51
+ {% include post-list.html %}
52
+
53
+ ```
54
+
55
+ ### Tags page
56
+
57
+ Create `tags.html` with below:
58
+
59
+ ```html
60
+ ---
61
+ layout: default
62
+ title: tags
63
+ permalink: /tags
64
+ ---
65
+
66
+ {% include tags.html %}
67
+ ```
68
+
69
+ ## Contributing
70
+
71
+ Bug reports and pull requests are welcome on GitHub at [paikwiki](mailto:paikwiki@gmail.com). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
72
+
73
+ ## Development
74
+
75
+ To set up your environment to develop this theme, run `bundle install`.
76
+
77
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
78
+
79
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
80
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-paikblog.gemspec` accordingly.
81
+
82
+ ## License
83
+
84
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,12 @@
1
+ title: SITE_TITLE
2
+ description: SITE_DESCRIPTION
3
+ author:
4
+ name: AUTHOR_NAME
5
+ email: EMAIL@EXAMPLE.COM
6
+ copyright_year: YEAR
7
+ sass:
8
+ style: compressed
9
+ plugins:
10
+ - jekyll-sitemap
11
+ - jekyll-seo-tag
12
+ - jekyll-feed
@@ -0,0 +1,20 @@
1
+ <!-- the list of post for main page -->
2
+ <article class="posts-wrapper">
3
+ <header>
4
+ <h1>Blog posts</h1>
5
+ </header>
6
+ <section class="posts-content">
7
+ {% if site.posts.size != 0 %}
8
+ <ul class="posts-list">
9
+ {% for post in site.posts %}
10
+ <li>
11
+ <span class="post-date">{{ post.date | date_to_string }} »</span>
12
+ <a href="{{ post.url }}" class="caption" title="🔖 {{ post.tags | array_to_sentence_string }}">{{post.title}}</a>
13
+ </li>
14
+ {% endfor %}
15
+ </ul>
16
+ {% else %}
17
+ <p>You have nothing yet.</p>
18
+ {% endif %}
19
+ </section>
20
+ </article>
@@ -0,0 +1,12 @@
1
+ <!-- post list which has specific tag -->
2
+ <div class="tags-wrapper">
3
+ {% assign sorted_tags = site.tags | sort %}
4
+ {% for tag in sorted_tags %}
5
+ <h3 id="{{ tag[0] }}">{{ tag[0] }}</h3>
6
+ <ul>
7
+ {% for post in tag[1] %}
8
+ <li><a href="{{ post.url }}">{{ post.title }}</a></li>
9
+ {% endfor %}
10
+ </ul>
11
+ {% endfor %}
12
+ </div>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ {% seo %}
7
+ <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
8
+ </head>
9
+ <body>
10
+ <article class="global-wrapper">
11
+ <header class="site-header">
12
+ <a href="{{ '/' | relative_url }}" class="hard-anchor" title="main-page"><span>{{ site.title }}</span></a>
13
+ </header>
14
+ <section class="site-content">
15
+ {{ content }}
16
+ </section>
17
+ <footer>
18
+ <p class="copyright">
19
+ &copy; {{ site.copyright_year }}.
20
+ <a href="mailto://{{ site.author.email }}" class="hard-anchor" title="mailto">{{ site.author.name }}</a> ALL RIGHTS RESERVED.
21
+ Follow via <a href="/feed.xml" title="rss">rss</a>
22
+ </p>
23
+ </footer>
24
+ </article>
25
+ </body>
26
+ </html>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,28 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="post-wrapper">
6
+ <section class="post-content">
7
+ <h1>{{ page.title }}</h1>
8
+ {% if page.date %}
9
+ <p class="meta">{{ page.date | date_to_string }}</p>
10
+ {% endif %}
11
+ {{ content }}
12
+ {% if page.tags.size > 0 %}
13
+ <p class="meta">
14
+ {% if page.tags.size > 1 %}
15
+ TAGS:
16
+ {% else %}
17
+ TAG:
18
+ {% endif %}
19
+ {% for tag in page.tags %}
20
+ <a href="/tags.html#{{tag}}" title="tags">{{tag}}</a>
21
+ {% endfor %}
22
+ </p>
23
+ {% endif %}
24
+ </section>
25
+ <aside>
26
+ <p>« <a href="{{ '/' | relative_url }}" class="hard-anchor" title="main-page">Back</a></p>
27
+ </aside>
28
+ </article>
@@ -0,0 +1,10 @@
1
+ /*
2
+ ** written by paikwiki
3
+ */
4
+
5
+ @import "jekyll-theme-paikblog/fonts";
6
+ @import "jekyll-theme-paikblog/basic";
7
+ @import "jekyll-theme-paikblog/syntax";
8
+ @import "jekyll-theme-paikblog/syntax-fix";
9
+ @import "jekyll-theme-paikblog/layout";
10
+ @import "jekyll-theme-paikblog/custom";
@@ -0,0 +1,95 @@
1
+ $linkColor: royalblue;
2
+ $linkColorVisited: darkorchid;
3
+ $metaColor: dimgray;
4
+
5
+ /* CSS Reset */
6
+ * { margin: 0; padding: 0; box-sizing: border-box; }
7
+ a { text-decoration: none; }
8
+ img { border: 0; }
9
+
10
+ /* HTML Elements */
11
+ body {
12
+ margin: 2rem 1rem;
13
+ }
14
+ @media all and (max-width: 480px){
15
+ body {
16
+ margin: 1.4rem 0.5rem;
17
+ }
18
+ }
19
+
20
+ h1 {
21
+ margin-bottom: 1rem;
22
+ font-size: 1.1rem;
23
+ letter-spacing: -0.01rem;
24
+ }
25
+
26
+ h2 {
27
+ margin-top: 1.25rem;
28
+ margin-bottom: 0.25rem;
29
+ font-size: 1rem;
30
+ letter-spacing: -0.01rem;
31
+ }
32
+
33
+ h3, h4, h5, h6 {
34
+ margin-top: 1rem;
35
+ margin-bottom: 0.25rem;
36
+ font-size: 1rem;
37
+ font-weight: normal;
38
+ letter-spacing: -0.01rem;
39
+ text-decoration: underline;
40
+ }
41
+
42
+ ul,
43
+ ol {
44
+ margin-bottom: 1rem;
45
+ li {
46
+ margin-left: 1.5rem;
47
+ }
48
+ }
49
+
50
+ a {
51
+ text-decoration: underline;
52
+ color: $linkColor;
53
+ }
54
+
55
+ a:visited {
56
+ color: $linkColorVisited;
57
+ }
58
+
59
+ p, span, a, li {
60
+ line-height: 1.8;
61
+ word-break: keep-all;
62
+ vertical-align: baseline;
63
+ }
64
+
65
+ p {
66
+ margin-bottom: 1rem;
67
+ }
68
+
69
+ blockquote {
70
+ margin-top: 1.25rem;
71
+ margin-bottom: 1.25rem;
72
+ padding: 1rem;
73
+ background-color: ghostwhite;
74
+ border-left: 8px solid;
75
+ p {
76
+ margin-bottom: 1rem;
77
+ &:last-child {
78
+ margin-bottom: 0;
79
+ }
80
+ }
81
+ }
82
+
83
+ pre {
84
+ margin-top: 1.25rem;
85
+ margin-bottom: 1.25rem;
86
+ padding: 1rem;
87
+ line-height: 1.6;
88
+ background-color: ghostwhite;
89
+ white-space: pre-wrap;
90
+ }
91
+
92
+ hr {
93
+ margin-top: 2rem;
94
+ margin-bottom: 1.5rem;
95
+ }
@@ -0,0 +1,37 @@
1
+ /* Utility class */
2
+ .hidden-text {
3
+ display: block;
4
+ margin-left: -9999999px;
5
+ width: 0;
6
+ height: 0;
7
+ opacity: 0;
8
+ }
9
+
10
+ /* Custom elements with class */
11
+ .hard-anchor,
12
+ .hard-anchor:visited {
13
+ color: $linkColor;
14
+ text-decoration: none;
15
+ }
16
+ .meta {
17
+ margin-bottom: 1.75rem;
18
+ font-size: 0.9rem;
19
+ font-style: oblique;
20
+ color: $metaColor;
21
+ }
22
+
23
+ /* - Aladin TTB */
24
+ .ttb-review {
25
+ margin-bottom: 2rem;
26
+ text-align: center;
27
+ a {
28
+ color: $linkColor;
29
+ img {
30
+ margin: 0 auto;
31
+ margin-top: 2em;
32
+ margin-bottom: 1em;
33
+ max-width: 200px;
34
+ box-shadow: 4px 4px 12px darkgrey;
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,20 @@
1
+ // @import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);
2
+ @import url('//cdn.jsdelivr.net/font-iropke-batang/1.2/font-iropke-batang.css');
3
+
4
+ html {
5
+ font-size: 12pt;
6
+ }
7
+ @media all and (max-width: 720px){
8
+ html {
9
+ font-size: 10pt;
10
+ }
11
+ }
12
+ h1, h2, h3, h4, h5, h6,
13
+ p, pre, a, li, blockquote {
14
+ font-family: 'Iropke Batang', 'Noto', serif;
15
+ color: #333333;
16
+ }
17
+
18
+ tt, code, kbd, samp {
19
+ font-family: "Source Code Pro", "Consolas", "Hack", monospace;
20
+ }
@@ -0,0 +1,67 @@
1
+ /* Layout */
2
+ .global-wrapper {
3
+ margin: 0 auto;
4
+ padding: 0.5rem 1rem;
5
+ max-width: 720px;
6
+ .site-header {
7
+ margin-bottom: 2rem;
8
+ span {
9
+ font-size: 1.1rem;
10
+ letter-spacing: -0.01rem;
11
+ }
12
+ }
13
+ aside {
14
+ margin-top: 1rem;
15
+ }
16
+ footer {
17
+ margin: 1rem 0;
18
+ font-size: 0.8rem;
19
+ }
20
+ /* post list */
21
+ .posts-content {
22
+ .posts-list {
23
+ li {
24
+ margin-left: 0;
25
+ list-style: none;
26
+ font-size: 0.8rem;
27
+ white-space: nowrap;
28
+ overflow: hidden;
29
+ text-overflow: ellipsis;
30
+ .post-date {
31
+ color: $metaColor;
32
+ font-family: Monaco, "Courier New", monospace;
33
+ word-spacing: -0.2em;
34
+ }
35
+ a {
36
+ font-size: 1rem;
37
+ }
38
+ }
39
+ }
40
+ }
41
+ /* post */
42
+ .post-content {
43
+
44
+ /* each post */
45
+ h2 {
46
+ margin-top: 2.5em;
47
+ margin-bottom: 1em;
48
+ }
49
+ h3 {
50
+ margin-top: 2em;
51
+ margin-bottom: 1em;
52
+ }
53
+ img {
54
+ display: block;
55
+ margin-top: 2em;
56
+ margin-bottom: 1em;
57
+ max-width: 80%;
58
+ box-shadow: 0px 2px 8px dimgray;
59
+ }
60
+ @media all and (max-width: 720px){
61
+ img {
62
+ margin-left: 1%;
63
+ max-width: 94%;
64
+ }
65
+ }
66
+ }
67
+ }
@@ -0,0 +1,19 @@
1
+ code.highlighter-rouge {
2
+ padding: 0 0.2rem;
3
+ border-radius: 4px;
4
+ color: dimgray;
5
+ background-color: gainsboro;
6
+ }
7
+
8
+ .highlighter-rouge {
9
+ pre.highlight {
10
+ padding: 2rem;
11
+ word-break: break-all;
12
+ overflow: auto;
13
+ }
14
+ @media all and (max-width: 720px){
15
+ pre.highlight {
16
+ padding: 1rem;
17
+ }
18
+ }
19
+ }
@@ -0,0 +1,173 @@
1
+ //colors
2
+ $color_pewter_approx: #93a1a1;
3
+ $color_daintree_approx: #002b36;
4
+ $color_alizarin_crimson_approx: #dc322f;
5
+ $color_pale_sky_approx: #657b83;
6
+ $color_hot_toddy_approx: #b58900;
7
+ $color_limeade_approx: #859900;
8
+ $color_curious_blue_approx: #268bd2;
9
+ $color_blue_marguerite_approx: #6c71c4;
10
+ $color_orange_roughy_approx: #cb4b16;
11
+ $color_jungle_green_approx: #2aa198;
12
+ $color_cerise_approx: #d33682;
13
+
14
+ .highlight {
15
+ color: $color_pewter_approx;
16
+ background-color: $color_daintree_approx;
17
+ table {
18
+ td {
19
+ padding: 5px;
20
+ }
21
+ pre {
22
+ margin: 0;
23
+ }
24
+ }
25
+ .w {
26
+ color: $color_pewter_approx;
27
+ background-color: $color_daintree_approx;
28
+ }
29
+ .err {
30
+ color: $color_daintree_approx;
31
+ background-color: $color_alizarin_crimson_approx;
32
+ }
33
+ .c {
34
+ color: $color_pale_sky_approx;
35
+ }
36
+ .cd {
37
+ color: $color_pale_sky_approx;
38
+ }
39
+ .cm {
40
+ color: $color_pale_sky_approx;
41
+ }
42
+ .c1 {
43
+ color: $color_pale_sky_approx;
44
+ }
45
+ .cs {
46
+ color: $color_pale_sky_approx;
47
+ }
48
+ .cp {
49
+ color: $color_hot_toddy_approx;
50
+ }
51
+ .nt {
52
+ color: $color_hot_toddy_approx;
53
+ }
54
+ .o {
55
+ color: $color_pewter_approx;
56
+ }
57
+ .ow {
58
+ color: $color_pewter_approx;
59
+ }
60
+ .p {
61
+ color: $color_pewter_approx;
62
+ }
63
+ .pi {
64
+ color: $color_pewter_approx;
65
+ }
66
+ .gi {
67
+ color: $color_limeade_approx;
68
+ }
69
+ .gd {
70
+ color: $color_alizarin_crimson_approx;
71
+ }
72
+ .gh {
73
+ color: $color_curious_blue_approx;
74
+ background-color: $color_daintree_approx;
75
+ font-weight: bold;
76
+ }
77
+ .k {
78
+ color: $color_blue_marguerite_approx;
79
+ }
80
+ .kn {
81
+ color: $color_blue_marguerite_approx;
82
+ }
83
+ .kp {
84
+ color: $color_blue_marguerite_approx;
85
+ }
86
+ .kr {
87
+ color: $color_blue_marguerite_approx;
88
+ }
89
+ .kv {
90
+ color: $color_blue_marguerite_approx;
91
+ }
92
+ .kc {
93
+ color: $color_orange_roughy_approx;
94
+ }
95
+ .kt {
96
+ color: $color_orange_roughy_approx;
97
+ }
98
+ .kd {
99
+ color: $color_orange_roughy_approx;
100
+ }
101
+ .s {
102
+ color: $color_limeade_approx;
103
+ }
104
+ .sb {
105
+ color: $color_limeade_approx;
106
+ }
107
+ .sc {
108
+ color: $color_limeade_approx;
109
+ }
110
+ .sd {
111
+ color: $color_limeade_approx;
112
+ }
113
+ .s2 {
114
+ color: $color_limeade_approx;
115
+ }
116
+ .sh {
117
+ color: $color_limeade_approx;
118
+ }
119
+ .sx {
120
+ color: $color_limeade_approx;
121
+ }
122
+ .s1 {
123
+ color: $color_limeade_approx;
124
+ }
125
+ .sr {
126
+ color: $color_jungle_green_approx;
127
+ }
128
+ .si {
129
+ color: $color_cerise_approx;
130
+ }
131
+ .se {
132
+ color: $color_cerise_approx;
133
+ }
134
+ .nn {
135
+ color: $color_hot_toddy_approx;
136
+ }
137
+ .nc {
138
+ color: $color_hot_toddy_approx;
139
+ }
140
+ .no {
141
+ color: $color_hot_toddy_approx;
142
+ }
143
+ .na {
144
+ color: $color_curious_blue_approx;
145
+ }
146
+ .m {
147
+ color: $color_limeade_approx;
148
+ }
149
+ .mf {
150
+ color: $color_limeade_approx;
151
+ }
152
+ .mh {
153
+ color: $color_limeade_approx;
154
+ }
155
+ .mi {
156
+ color: $color_limeade_approx;
157
+ }
158
+ .il {
159
+ color: $color_limeade_approx;
160
+ }
161
+ .mo {
162
+ color: $color_limeade_approx;
163
+ }
164
+ .mb {
165
+ color: $color_limeade_approx;
166
+ }
167
+ .mx {
168
+ color: $color_limeade_approx;
169
+ }
170
+ .ss {
171
+ color: $color_limeade_approx;
172
+ }
173
+ }
@@ -0,0 +1,6 @@
1
+ ---
2
+ ---
3
+
4
+ @charset "utf-8";
5
+
6
+ @import "jekyll-theme-paikblog";
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-paikblog
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - paikwiki
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-12-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-sitemap
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.4.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.4.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-seo-tag
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 2.7.1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 2.7.1
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-feed
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.15.1
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.15.1
69
+ description:
70
+ email:
71
+ - paikwiki@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - LICENSE.txt
77
+ - README.md
78
+ - _config.yml
79
+ - _includes/post-list.html
80
+ - _includes/tags.html
81
+ - _layouts/default.html
82
+ - _layouts/page.html
83
+ - _layouts/post.html
84
+ - _sass/jekyll-theme-paikblog.scss
85
+ - _sass/jekyll-theme-paikblog/_basic.scss
86
+ - _sass/jekyll-theme-paikblog/_custom.scss
87
+ - _sass/jekyll-theme-paikblog/_fonts.scss
88
+ - _sass/jekyll-theme-paikblog/_layout.scss
89
+ - _sass/jekyll-theme-paikblog/_syntax-fix.scss
90
+ - _sass/jekyll-theme-paikblog/_syntax.scss
91
+ - assets/css/main.scss
92
+ homepage: https://paikwiki.github.io
93
+ licenses:
94
+ - MIT
95
+ metadata: {}
96
+ post_install_message:
97
+ rdoc_options: []
98
+ require_paths:
99
+ - lib
100
+ required_ruby_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ required_rubygems_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ requirements: []
111
+ rubygems_version: 3.1.2
112
+ signing_key:
113
+ specification_version: 4
114
+ summary: Jekyll theme for paikwiki.github.io
115
+ test_files: []