jekyll-theme-purple 1.0.0
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 +7 -0
- data/LICENSE +22 -0
- data/README.md +105 -0
- data/_data/locales/ar.yml +91 -0
- data/_data/locales/bg-BG.yml +81 -0
- data/_data/locales/ca-ES.yml +84 -0
- data/_data/locales/cs-CZ.yml +89 -0
- data/_data/locales/da-DK.yml +86 -0
- data/_data/locales/de-DE.yml +87 -0
- data/_data/locales/dv/342/200/221MV.yml +90 -0
- data/_data/locales/el-GR.yml +91 -0
- data/_data/locales/en.yml +91 -0
- data/_data/locales/es-ES.yml +77 -0
- data/_data/locales/fa-IR.yml +91 -0
- data/_data/locales/fi-FI.yml +90 -0
- data/_data/locales/fr-FR.yml +77 -0
- data/_data/locales/hu-HU.yml +92 -0
- data/_data/locales/id-ID.yml +77 -0
- data/_data/locales/it-IT.yml +90 -0
- data/_data/locales/ja-JP.yml +84 -0
- data/_data/locales/ko-KR.yml +84 -0
- data/_data/locales/ku-IQ.yml +91 -0
- data/_data/locales/my-MM.yml +77 -0
- data/_data/locales/nl-NL.yml +90 -0
- data/_data/locales/ps/342/200/221AF.yml +90 -0
- data/_data/locales/pt-BR.yml +77 -0
- data/_data/locales/ru-RU.yml +87 -0
- data/_data/locales/sl-SI.yml +91 -0
- data/_data/locales/sv-SE.yml +91 -0
- data/_data/locales/th.yml +91 -0
- data/_data/locales/tr-TR.yml +77 -0
- data/_data/locales/uk-UA.yml +77 -0
- data/_data/locales/ur-PK.yml +90 -0
- data/_data/locales/vi-VN.yml +76 -0
- data/_data/locales/zh-CN.yml +83 -0
- data/_data/locales/zh-TW.yml +83 -0
- data/_data/origin/basic.yml +39 -0
- data/_data/origin/cors.yml +54 -0
- data/_includes/analytics/cloudflare.html +6 -0
- data/_includes/analytics/fathom.html +6 -0
- data/_includes/analytics/goatcounter.html +6 -0
- data/_includes/analytics/google.html +13 -0
- data/_includes/analytics/matomo.html +13 -0
- data/_includes/analytics/umami.html +6 -0
- data/_includes/comment.html +5 -0
- data/_includes/comments/disqus.html +57 -0
- data/_includes/comments/giscus.html +55 -0
- data/_includes/comments/utterances.html +38 -0
- data/_includes/datetime.html +20 -0
- data/_includes/embed/audio.html +35 -0
- data/_includes/embed/bilibili.html +9 -0
- data/_includes/embed/twitch.html +8 -0
- data/_includes/embed/video.html +59 -0
- data/_includes/embed/youtube.html +9 -0
- data/_includes/favicons.html +19 -0
- data/_includes/footer.html +49 -0
- data/_includes/head.html +126 -0
- data/_includes/js-selector.html +86 -0
- data/_includes/jsdelivr-combine.html +26 -0
- data/_includes/lang.html +10 -0
- data/_includes/language-alias.html +70 -0
- data/_includes/media-url.html +37 -0
- data/_includes/metadata-hook.html +1 -0
- data/_includes/notification.html +24 -0
- data/_includes/origin-type.html +13 -0
- data/_includes/pageviews/goatcounter.html +21 -0
- data/_includes/post-description.html +30 -0
- data/_includes/post-nav.html +34 -0
- data/_includes/post-paginator.html +91 -0
- data/_includes/post-sharing.html +52 -0
- data/_includes/read-time.html +37 -0
- data/_includes/refactor-content.html +287 -0
- data/_includes/related-posts.html +94 -0
- data/_includes/search-loader.html +49 -0
- data/_includes/search-results.html +10 -0
- data/_includes/sidebar.html +105 -0
- data/_includes/toc-status.html +10 -0
- data/_includes/toc.html +9 -0
- data/_includes/topbar.html +77 -0
- data/_includes/trending-tags.html +46 -0
- data/_includes/update-list.html +40 -0
- data/_layouts/archives.html +35 -0
- data/_layouts/categories.html +138 -0
- data/_layouts/category.html +24 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +86 -0
- data/_layouts/home.html +121 -0
- data/_layouts/page.html +20 -0
- data/_layouts/post.html +179 -0
- data/_layouts/tag.html +23 -0
- data/_layouts/tags.html +22 -0
- data/_sass/abstracts/_breakpoints.scss +73 -0
- data/_sass/abstracts/_index.scss +4 -0
- data/_sass/abstracts/_mixins.scss +80 -0
- data/_sass/abstracts/_placeholders.scss +163 -0
- data/_sass/abstracts/_variables.scss +30 -0
- data/_sass/base/_base.scss +477 -0
- data/_sass/base/_index.scss +4 -0
- data/_sass/base/_reset.scss +41 -0
- data/_sass/base/_syntax.scss +253 -0
- data/_sass/base/_typography.scss +266 -0
- data/_sass/components/_buttons.scss +51 -0
- data/_sass/components/_index.scss +2 -0
- data/_sass/components/_popups.scss +172 -0
- data/_sass/layout/_footer.scss +36 -0
- data/_sass/layout/_index.scss +4 -0
- data/_sass/layout/_panel.scss +70 -0
- data/_sass/layout/_sidebar.scss +258 -0
- data/_sass/layout/_topbar.scss +86 -0
- data/_sass/main.bundle.scss +2 -0
- data/_sass/main.scss +4 -0
- data/_sass/pages/_archives.scss +140 -0
- data/_sass/pages/_categories.scss +82 -0
- data/_sass/pages/_category-tag.scss +63 -0
- data/_sass/pages/_home.scss +173 -0
- data/_sass/pages/_index.scss +7 -0
- data/_sass/pages/_post.scss +496 -0
- data/_sass/pages/_search.scss +184 -0
- data/_sass/pages/_tags.scss +23 -0
- data/_sass/themes/_dark.scss +290 -0
- data/_sass/themes/_light.scss +298 -0
- data/_sass/vendors/_bootstrap.scss +5 -0
- data/assets/404.html +9 -0
- data/assets/css/jekyll-theme-purple.scss +11 -0
- data/assets/feed.xml +54 -0
- data/assets/img/favicons/android-chrome-192x192.png +0 -0
- data/assets/img/favicons/android-chrome-512x512.png +0 -0
- data/assets/img/favicons/apple-touch-icon.png +0 -0
- data/assets/img/favicons/browserconfig.xml +13 -0
- data/assets/img/favicons/favicon-16x16.png +0 -0
- data/assets/img/favicons/favicon-32x32.png +0 -0
- data/assets/img/favicons/favicon.ico +0 -0
- data/assets/img/favicons/mstile-150x150.png +0 -0
- data/assets/img/favicons/site.webmanifest +26 -0
- data/assets/js/data/mathjax.js +25 -0
- data/assets/js/data/search.json +17 -0
- data/assets/js/data/swconf.js +47 -0
- data/assets/js/dist/app.min.js +7 -0
- data/assets/js/dist/categories.min.js +4 -0
- data/assets/js/dist/commons.min.js +4 -0
- data/assets/js/dist/home.min.js +4 -0
- data/assets/js/dist/misc.min.js +4 -0
- data/assets/js/dist/page.min.js +4 -0
- data/assets/js/dist/post.min.js +4 -0
- data/assets/js/dist/sw.min.js +7 -0
- data/assets/js/dist/theme.min.js +4 -0
- data/assets/robots.txt +10 -0
- metadata +277 -0
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
permalink: /:basename
|
3
|
+
---
|
4
|
+
/*!
|
5
|
+
* jekyll-theme-purple v1.0.0 | © 2019 Cotes Chung, Vishwa R | MIT Licensed | https://github.com/kyroceus/jekyll-theme-purple/
|
6
|
+
*/
|
7
|
+
!function(){"use strict";importScripts("./assets/js/data/swconf.js");const e=swconf.purge,t=swconf.interceptor;self.addEventListener("install",t=>{e||t.waitUntil(caches.open(swconf.cacheName).then(e=>e.addAll(swconf.resources)))}),self.addEventListener("activate",t=>{t.waitUntil(caches.keys().then(t=>Promise.all(t.map(t=>e||t!==swconf.cacheName?caches.delete(t):void 0))))}),self.addEventListener("message",e=>{"SKIP_WAITING"===e.data&&self.skipWaiting()}),self.addEventListener("fetch",s=>{s.request.headers.has("range")||s.respondWith(caches.match(s.request).then(n=>n||fetch(s.request).then(n=>{const r=s.request.url;if(e||"GET"!==s.request.method||!function(e){const s=new URL(e),n=s.pathname;if(!s.protocol.startsWith("http"))return!1;for(const e of t.urlPrefixes)if(s.href.startsWith(e))return!1;for(const e of t.paths)if(n.startsWith(e))return!1;return!0}(r))return n;let a=n.clone();return caches.open(swconf.cacheName).then(e=>{e.put(s.request,a)}),n})))})}();
|
@@ -0,0 +1,4 @@
|
|
1
|
+
/*!
|
2
|
+
* jekyll-theme-purple v1.0.0 | © 2019 Cotes Chung, Vishwa R | MIT Licensed | https://github.com/kyroceus/jekyll-theme-purple/
|
3
|
+
*/
|
4
|
+
var Theme=function(){"use strict";function t(t,e,i){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:i;throw new TypeError("Private element is not present on this object")}function e(e,i,s){return s(t(e,i))}var i;class s{static get DARK(){return"dark"}static get LIGHT(){return"light"}static get ID(){return"theme-mode"}static get visualState(){return e(s,this,o)?e(s,this,n):e(s,this,h)?this.DARK:this.LIGHT}static getThemeMapper(t,e){return{[this.LIGHT]:t,[this.DARK]:e}}static init(){this.switchable&&(t(s,this,b)._.addEventListener("change",()=>{const i=e(s,this,n);t(s,this,a).call(this),i!==this.visualState&&t(s,this,l).call(this)}),e(s,this,o)&&(e(s,this,r)?t(s,this,u).call(this):t(s,this,c).call(this)))}static flip(){e(s,this,o)?t(s,this,a).call(this):e(s,this,h)?t(s,this,c).call(this):t(s,this,u).call(this),t(s,this,l).call(this)}}function n(e){return sessionStorage.getItem(t(i,e,g)._)||document.documentElement.getAttribute(t(i,e,v)._)}function r(t){return e(i,t,n)===t.DARK}function o(t){return null!==e(i,t,n)}function h(e){return t(i,e,b)._.matches}function u(){document.documentElement.setAttribute(t(i,this,v)._,this.DARK),sessionStorage.setItem(t(i,this,g)._,this.DARK)}function c(){document.documentElement.setAttribute(t(i,this,v)._,this.LIGHT),sessionStorage.setItem(t(i,this,g)._,this.LIGHT)}function a(){document.documentElement.removeAttribute(t(i,this,v)._),sessionStorage.removeItem(t(i,this,g)._)}function l(){window.postMessage({id:this.ID},"*")}i=s;var m,f,d,g={_:"mode"},v={_:"data-mode"},b={_:window.matchMedia("(prefers-color-scheme: dark)")};return m=s,f="switchable",d=!document.documentElement.hasAttribute(t(i,i,v)._),(f=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var i=t[Symbol.toPrimitive];if(void 0!==i){var s=i.call(t,e);if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:e+""}(f))in m?Object.defineProperty(m,f,{value:d,enumerable:!0,configurable:!0,writable:!0}):m[f]=d,s.init(),s}();
|
data/assets/robots.txt
ADDED
metadata
ADDED
@@ -0,0 +1,277 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-theme-purple
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Cotes Chung
|
8
|
+
- Vishwa R
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 1980-01-02 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.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-paginate
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.1'
|
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.8'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.8'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jekyll-archives
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.2'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2.2'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: jekyll-sitemap
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.4'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.4'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: jekyll-include-cache
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0.2'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0.2'
|
97
|
+
email:
|
98
|
+
- cotes.chung@gmail.com
|
99
|
+
- vishwajenvish@gmail.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- LICENSE
|
105
|
+
- README.md
|
106
|
+
- _data/locales/ar.yml
|
107
|
+
- _data/locales/bg-BG.yml
|
108
|
+
- _data/locales/ca-ES.yml
|
109
|
+
- _data/locales/cs-CZ.yml
|
110
|
+
- _data/locales/da-DK.yml
|
111
|
+
- _data/locales/de-DE.yml
|
112
|
+
- _data/locales/dv‑MV.yml
|
113
|
+
- _data/locales/el-GR.yml
|
114
|
+
- _data/locales/en.yml
|
115
|
+
- _data/locales/es-ES.yml
|
116
|
+
- _data/locales/fa-IR.yml
|
117
|
+
- _data/locales/fi-FI.yml
|
118
|
+
- _data/locales/fr-FR.yml
|
119
|
+
- _data/locales/hu-HU.yml
|
120
|
+
- _data/locales/id-ID.yml
|
121
|
+
- _data/locales/it-IT.yml
|
122
|
+
- _data/locales/ja-JP.yml
|
123
|
+
- _data/locales/ko-KR.yml
|
124
|
+
- _data/locales/ku-IQ.yml
|
125
|
+
- _data/locales/my-MM.yml
|
126
|
+
- _data/locales/nl-NL.yml
|
127
|
+
- _data/locales/ps‑AF.yml
|
128
|
+
- _data/locales/pt-BR.yml
|
129
|
+
- _data/locales/ru-RU.yml
|
130
|
+
- _data/locales/sl-SI.yml
|
131
|
+
- _data/locales/sv-SE.yml
|
132
|
+
- _data/locales/th.yml
|
133
|
+
- _data/locales/tr-TR.yml
|
134
|
+
- _data/locales/uk-UA.yml
|
135
|
+
- _data/locales/ur-PK.yml
|
136
|
+
- _data/locales/vi-VN.yml
|
137
|
+
- _data/locales/zh-CN.yml
|
138
|
+
- _data/locales/zh-TW.yml
|
139
|
+
- _data/origin/basic.yml
|
140
|
+
- _data/origin/cors.yml
|
141
|
+
- _includes/analytics/cloudflare.html
|
142
|
+
- _includes/analytics/fathom.html
|
143
|
+
- _includes/analytics/goatcounter.html
|
144
|
+
- _includes/analytics/google.html
|
145
|
+
- _includes/analytics/matomo.html
|
146
|
+
- _includes/analytics/umami.html
|
147
|
+
- _includes/comment.html
|
148
|
+
- _includes/comments/disqus.html
|
149
|
+
- _includes/comments/giscus.html
|
150
|
+
- _includes/comments/utterances.html
|
151
|
+
- _includes/datetime.html
|
152
|
+
- _includes/embed/audio.html
|
153
|
+
- _includes/embed/bilibili.html
|
154
|
+
- _includes/embed/twitch.html
|
155
|
+
- _includes/embed/video.html
|
156
|
+
- _includes/embed/youtube.html
|
157
|
+
- _includes/favicons.html
|
158
|
+
- _includes/footer.html
|
159
|
+
- _includes/head.html
|
160
|
+
- _includes/js-selector.html
|
161
|
+
- _includes/jsdelivr-combine.html
|
162
|
+
- _includes/lang.html
|
163
|
+
- _includes/language-alias.html
|
164
|
+
- _includes/media-url.html
|
165
|
+
- _includes/metadata-hook.html
|
166
|
+
- _includes/notification.html
|
167
|
+
- _includes/origin-type.html
|
168
|
+
- _includes/pageviews/goatcounter.html
|
169
|
+
- _includes/post-description.html
|
170
|
+
- _includes/post-nav.html
|
171
|
+
- _includes/post-paginator.html
|
172
|
+
- _includes/post-sharing.html
|
173
|
+
- _includes/read-time.html
|
174
|
+
- _includes/refactor-content.html
|
175
|
+
- _includes/related-posts.html
|
176
|
+
- _includes/search-loader.html
|
177
|
+
- _includes/search-results.html
|
178
|
+
- _includes/sidebar.html
|
179
|
+
- _includes/toc-status.html
|
180
|
+
- _includes/toc.html
|
181
|
+
- _includes/topbar.html
|
182
|
+
- _includes/trending-tags.html
|
183
|
+
- _includes/update-list.html
|
184
|
+
- _layouts/archives.html
|
185
|
+
- _layouts/categories.html
|
186
|
+
- _layouts/category.html
|
187
|
+
- _layouts/compress.html
|
188
|
+
- _layouts/default.html
|
189
|
+
- _layouts/home.html
|
190
|
+
- _layouts/page.html
|
191
|
+
- _layouts/post.html
|
192
|
+
- _layouts/tag.html
|
193
|
+
- _layouts/tags.html
|
194
|
+
- _sass/abstracts/_breakpoints.scss
|
195
|
+
- _sass/abstracts/_index.scss
|
196
|
+
- _sass/abstracts/_mixins.scss
|
197
|
+
- _sass/abstracts/_placeholders.scss
|
198
|
+
- _sass/abstracts/_variables.scss
|
199
|
+
- _sass/base/_base.scss
|
200
|
+
- _sass/base/_index.scss
|
201
|
+
- _sass/base/_reset.scss
|
202
|
+
- _sass/base/_syntax.scss
|
203
|
+
- _sass/base/_typography.scss
|
204
|
+
- _sass/components/_buttons.scss
|
205
|
+
- _sass/components/_index.scss
|
206
|
+
- _sass/components/_popups.scss
|
207
|
+
- _sass/layout/_footer.scss
|
208
|
+
- _sass/layout/_index.scss
|
209
|
+
- _sass/layout/_panel.scss
|
210
|
+
- _sass/layout/_sidebar.scss
|
211
|
+
- _sass/layout/_topbar.scss
|
212
|
+
- _sass/main.bundle.scss
|
213
|
+
- _sass/main.scss
|
214
|
+
- _sass/pages/_archives.scss
|
215
|
+
- _sass/pages/_categories.scss
|
216
|
+
- _sass/pages/_category-tag.scss
|
217
|
+
- _sass/pages/_home.scss
|
218
|
+
- _sass/pages/_index.scss
|
219
|
+
- _sass/pages/_post.scss
|
220
|
+
- _sass/pages/_search.scss
|
221
|
+
- _sass/pages/_tags.scss
|
222
|
+
- _sass/themes/_dark.scss
|
223
|
+
- _sass/themes/_light.scss
|
224
|
+
- _sass/vendors/_bootstrap.scss
|
225
|
+
- assets/404.html
|
226
|
+
- assets/css/jekyll-theme-purple.scss
|
227
|
+
- assets/feed.xml
|
228
|
+
- assets/img/favicons/android-chrome-192x192.png
|
229
|
+
- assets/img/favicons/android-chrome-512x512.png
|
230
|
+
- assets/img/favicons/apple-touch-icon.png
|
231
|
+
- assets/img/favicons/browserconfig.xml
|
232
|
+
- assets/img/favicons/favicon-16x16.png
|
233
|
+
- assets/img/favicons/favicon-32x32.png
|
234
|
+
- assets/img/favicons/favicon.ico
|
235
|
+
- assets/img/favicons/mstile-150x150.png
|
236
|
+
- assets/img/favicons/site.webmanifest
|
237
|
+
- assets/js/data/mathjax.js
|
238
|
+
- assets/js/data/search.json
|
239
|
+
- assets/js/data/swconf.js
|
240
|
+
- assets/js/dist/app.min.js
|
241
|
+
- assets/js/dist/categories.min.js
|
242
|
+
- assets/js/dist/commons.min.js
|
243
|
+
- assets/js/dist/home.min.js
|
244
|
+
- assets/js/dist/misc.min.js
|
245
|
+
- assets/js/dist/page.min.js
|
246
|
+
- assets/js/dist/post.min.js
|
247
|
+
- assets/js/dist/sw.min.js
|
248
|
+
- assets/js/dist/theme.min.js
|
249
|
+
- assets/robots.txt
|
250
|
+
homepage: https://github.com/kyroceus/jekyll-theme-purple
|
251
|
+
licenses:
|
252
|
+
- MIT
|
253
|
+
metadata:
|
254
|
+
bug_tracker_uri: https://github.com/kyroceus/jekyll-theme-purple/issues
|
255
|
+
documentation_uri: https://github.com/kyroceus/jekyll-theme-purple/#readme
|
256
|
+
homepage_uri: https://github.com/kyroceus/jekyll-theme-purple
|
257
|
+
source_code_uri: https://github.com/kyroceus/jekyll-theme-purple
|
258
|
+
wiki_uri: https://github.com/kyroceus/jekyll-theme-purple/wiki
|
259
|
+
plugin_type: theme
|
260
|
+
rdoc_options: []
|
261
|
+
require_paths:
|
262
|
+
- lib
|
263
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
264
|
+
requirements:
|
265
|
+
- - "~>"
|
266
|
+
- !ruby/object:Gem::Version
|
267
|
+
version: '3.1'
|
268
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
269
|
+
requirements:
|
270
|
+
- - ">="
|
271
|
+
- !ruby/object:Gem::Version
|
272
|
+
version: '0'
|
273
|
+
requirements: []
|
274
|
+
rubygems_version: 3.6.9
|
275
|
+
specification_version: 4
|
276
|
+
summary: A minimal, responsive, and feature-rich Jekyll theme for technical writing.
|
277
|
+
test_files: []
|