jekyll-theme-chirpy-customized-upe 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +81 -0
  4. data/_data/locales/ar.yml +91 -0
  5. data/_data/locales/bg-BG.yml +81 -0
  6. data/_data/locales/cs-CZ.yml +89 -0
  7. data/_data/locales/de-DE.yml +87 -0
  8. data/_data/locales/el-GR.yml +91 -0
  9. data/_data/locales/en.yml +91 -0
  10. data/_data/locales/es-ES.yml +77 -0
  11. data/_data/locales/fi-FI.yml +90 -0
  12. data/_data/locales/fr-FR.yml +77 -0
  13. data/_data/locales/hu-HU.yml +79 -0
  14. data/_data/locales/id-ID.yml +77 -0
  15. data/_data/locales/it-IT.yml +90 -0
  16. data/_data/locales/ko-KR.yml +84 -0
  17. data/_data/locales/my-MM.yml +77 -0
  18. data/_data/locales/pt-BR.yml +77 -0
  19. data/_data/locales/ru-RU.yml +87 -0
  20. data/_data/locales/sl-SI.yml +91 -0
  21. data/_data/locales/sv-SE.yml +91 -0
  22. data/_data/locales/th.yml +91 -0
  23. data/_data/locales/tr-TR.yml +77 -0
  24. data/_data/locales/uk-UA.yml +77 -0
  25. data/_data/locales/vi-VN.yml +76 -0
  26. data/_data/locales/zh-CN.yml +83 -0
  27. data/_data/locales/zh-TW.yml +83 -0
  28. data/_data/origin/basic.yml +46 -0
  29. data/_data/origin/cors.yml +59 -0
  30. data/_includes/comments/disqus.html +50 -0
  31. data/_includes/comments/giscus.html +65 -0
  32. data/_includes/comments/utterances.html +50 -0
  33. data/_includes/comments.html +5 -0
  34. data/_includes/datetime.html +20 -0
  35. data/_includes/embed/bilibili.html +10 -0
  36. data/_includes/embed/twitch.html +8 -0
  37. data/_includes/embed/youtube.html +9 -0
  38. data/_includes/favicons.html +19 -0
  39. data/_includes/footer.html +42 -0
  40. data/_includes/goatcounter.html +8 -0
  41. data/_includes/google-analytics.html +14 -0
  42. data/_includes/head.html +111 -0
  43. data/_includes/img-url.html +39 -0
  44. data/_includes/js-selector.html +113 -0
  45. data/_includes/jsdelivr-combine.html +26 -0
  46. data/_includes/lang.html +8 -0
  47. data/_includes/language-alias.html +70 -0
  48. data/_includes/mermaid.html +58 -0
  49. data/_includes/metadata-hook.html +1 -0
  50. data/_includes/mode-toggle.html +143 -0
  51. data/_includes/no-linenos.html +10 -0
  52. data/_includes/notification.html +24 -0
  53. data/_includes/origin-type.html +13 -0
  54. data/_includes/post-nav.html +34 -0
  55. data/_includes/post-paginator.html +91 -0
  56. data/_includes/post-sharing.html +52 -0
  57. data/_includes/read-time.html +37 -0
  58. data/_includes/refactor-content.html +255 -0
  59. data/_includes/related-posts.html +96 -0
  60. data/_includes/search-loader.html +47 -0
  61. data/_includes/search-results.html +10 -0
  62. data/_includes/sidebar.html +99 -0
  63. data/_includes/toc.html +13 -0
  64. data/_includes/topbar.html +77 -0
  65. data/_includes/trending-tags.html +46 -0
  66. data/_includes/update-list.html +40 -0
  67. data/_layouts/archives.html +35 -0
  68. data/_layouts/categories.html +138 -0
  69. data/_layouts/category.html +24 -0
  70. data/_layouts/compress.html +10 -0
  71. data/_layouts/default.html +87 -0
  72. data/_layouts/home.html +118 -0
  73. data/_layouts/page.html +20 -0
  74. data/_layouts/post.html +139 -0
  75. data/_layouts/tag.html +23 -0
  76. data/_layouts/tags.html +22 -0
  77. data/_sass/addon/commons.scss +1540 -0
  78. data/_sass/addon/module.scss +200 -0
  79. data/_sass/addon/syntax.scss +292 -0
  80. data/_sass/addon/variables.scss +33 -0
  81. data/_sass/colors/syntax-dark.scss +164 -0
  82. data/_sass/colors/syntax-light.scss +214 -0
  83. data/_sass/colors/typography-dark.scss +151 -0
  84. data/_sass/colors/typography-light.scss +112 -0
  85. data/_sass/layout/archives.scss +144 -0
  86. data/_sass/layout/categories.scss +83 -0
  87. data/_sass/layout/category-tag.scss +72 -0
  88. data/_sass/layout/home.scss +189 -0
  89. data/_sass/layout/post.scss +357 -0
  90. data/_sass/layout/tags.scss +19 -0
  91. data/_sass/main.scss +13 -0
  92. data/_sass/variables-hook.scss +3 -0
  93. data/assets/404.html +14 -0
  94. data/assets/css/jekyll-theme-chirpy.scss +6 -0
  95. data/assets/feed.xml +61 -0
  96. data/assets/img/favicons/android-chrome-192x192.png +0 -0
  97. data/assets/img/favicons/android-chrome-512x512.png +0 -0
  98. data/assets/img/favicons/apple-touch-icon.png +0 -0
  99. data/assets/img/favicons/browserconfig.xml +13 -0
  100. data/assets/img/favicons/favicon-16x16.png +0 -0
  101. data/assets/img/favicons/favicon-32x32.png +0 -0
  102. data/assets/img/favicons/favicon.ico +0 -0
  103. data/assets/img/favicons/mstile-150x150.png +0 -0
  104. data/assets/img/favicons/site.webmanifest +26 -0
  105. data/assets/js/data/search.json +20 -0
  106. data/assets/js/data/swconf.js +51 -0
  107. data/assets/js/pwa/app.js +54 -0
  108. data/assets/js/pwa/sw.js +101 -0
  109. data/assets/robots.txt +10 -0
  110. metadata +249 -0
data/assets/feed.xml ADDED
@@ -0,0 +1,61 @@
1
+ ---
2
+ layout: compress
3
+ permalink: /feed.xml
4
+ # Atom Feed, reference: https://validator.w3.org/feed/docs/atom.html
5
+ ---
6
+
7
+ {% capture source %}
8
+ <feed xmlns="http://www.w3.org/2005/Atom">
9
+ <id>{{ "/" | absolute_url }}</id>
10
+ <title>{{ site.title }}</title>
11
+ <subtitle>{{ site.description }}</subtitle>
12
+ <updated>{{ site.time | date_to_xmlschema }}</updated>
13
+ <author>
14
+ <name>{{ site.social.name }}</name>
15
+ <uri>{{ "/" | absolute_url }}</uri>
16
+ </author>
17
+ <link rel="self" type="application/atom+xml" href="{{ page.url | absolute_url }}"/>
18
+ <link rel="alternate" type="text/html" hreflang="{{ site.alt_lang | default: site.lang }}"
19
+ href="{{ '/' | absolute_url }}"/>
20
+ <generator uri="https://jekyllrb.com/" version="{{ jekyll.version }}">Jekyll</generator>
21
+ <rights> © {{ 'now' | date: '%Y' }} {{ site.social.name }} </rights>
22
+ <icon>{{ site.baseurl }}/assets/img/favicons/favicon.ico</icon>
23
+ <logo>{{ site.baseurl }}/assets/img/favicons/favicon-96x96.png</logo>
24
+
25
+ {% for post in site.posts limit: 5 %}
26
+ {% assign post_absolute_url = post.url | absolute_url %}
27
+ <entry>
28
+ <title>{{ post.title }}</title>
29
+ <link href="{{ post_absolute_url }}" rel="alternate" type="text/html" title="{{ post.title | xml_escape }}" />
30
+ <published>{{ post.date | date_to_xmlschema }}</published>
31
+ {% if post.last_modified_at %}
32
+ <updated>{{ post.last_modified_at | date_to_xmlschema }}</updated>
33
+ {% else %}
34
+ <updated>{{ post.date | date_to_xmlschema }}</updated>
35
+ {% endif %}
36
+ <id>{{ post_absolute_url }}</id>
37
+ <content src="{{ post_absolute_url }}" />
38
+ <author>
39
+ <name>{{ post.author | default: site.social.name }}</name>
40
+ </author>
41
+
42
+ {% if post.categories %}
43
+ {% for category in post.categories %}
44
+ <category term="{{ category }}" />
45
+ {% endfor %}
46
+ {% endif %}
47
+
48
+ {% if post.summary %}
49
+ <summary>{{ post.summary | strip }}</summary>
50
+ {% else %}
51
+ <summary>
52
+ {% include no-linenos.html content=post.content %}
53
+ {{ content | strip_html | truncate: 400 }}
54
+ </summary>
55
+ {% endif %}
56
+
57
+ </entry>
58
+ {% endfor %}
59
+ </feed>
60
+ {% endcapture %}
61
+ {{ source | replace: '&', '&amp;' }}
@@ -0,0 +1,13 @@
1
+ ---
2
+ layout: compress
3
+ ---
4
+
5
+ <?xml version="1.0" encoding="utf-8"?>
6
+ <browserconfig>
7
+ <msapplication>
8
+ <tile>
9
+ <square150x150logo src="{{ '/assets/img/favicons/mstile-150x150.png' | relative_url }}" />
10
+ <TileColor>#da532c</TileColor>
11
+ </tile>
12
+ </msapplication>
13
+ </browserconfig>
Binary file
@@ -0,0 +1,26 @@
1
+ ---
2
+ layout: compress
3
+ ---
4
+
5
+ {% assign favicon_path = "/assets/img/favicons" | relative_url %}
6
+
7
+ {
8
+ "name": "{{ site.title }}",
9
+ "short_name": "{{ site.title }}",
10
+ "description": "{{ site.description }}",
11
+ "icons": [
12
+ {
13
+ "src": "{{ favicon_path }}/android-chrome-192x192.png",
14
+ "sizes": "192x192",
15
+ "type": "image/png"
16
+ },
17
+ {
18
+ "src": "{{ favicon_path }}/android-chrome-512x512.png",
19
+ "sizes": "512x512",
20
+ "type": "image/png"
21
+ }],
22
+ "start_url": "{{ '/index.html' | relative_url }}",
23
+ "theme_color": "#2a1e6b",
24
+ "background_color": "#ffffff",
25
+ "display": "fullscreen"
26
+ }
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: compress
3
+ swcache: true
4
+ ---
5
+
6
+ [
7
+ {% for post in site.posts %}
8
+ {
9
+ "title": {{ post.title | jsonify }},
10
+ "url": {{ post.url | relative_url | jsonify }},
11
+ "categories": {{ post.categories | join: ', ' | jsonify }},
12
+ "tags": {{ post.tags | join: ', ' | jsonify }},
13
+ "date": "{{ post.date }}",
14
+ {% include no-linenos.html content=post.content %}
15
+ {% assign _content = content | strip_html | strip_newlines %}
16
+ "snippet": {{ _content | truncate: 200 | jsonify }},
17
+ "content": {{ _content | jsonify }}
18
+ }{% unless forloop.last %},{% endunless %}
19
+ {% endfor %}
20
+ ]
@@ -0,0 +1,51 @@
1
+ ---
2
+ layout: compress
3
+ permalink: '/:path/swconf.js'
4
+ # Note that this file will be fetched by the ServiceWorker, so it will not be cached.
5
+ ---
6
+
7
+ const swconf = {
8
+ {% if site.pwa.cache.enabled %}
9
+ cacheName: 'chirpy-{{ "now" | date: "%s" }}',
10
+
11
+ {%- comment -%} Resources added to the cache during PWA installation. {%- endcomment -%}
12
+ resources: [
13
+ '{{ "/assets/css/:THEME.css" | replace: ':THEME', site.theme | relative_url }}',
14
+ '{{ "/" | relative_url }}',
15
+ {% for tab in site.tabs %}
16
+ '{{- tab.url | relative_url -}}',
17
+ {% endfor %}
18
+
19
+ {% assign cache_list = site.static_files | where: 'swcache', true %}
20
+ {% for file in cache_list %}
21
+ '{{ file.path | relative_url }}'{%- unless forloop.last -%},{%- endunless -%}
22
+ {% endfor %}
23
+ ],
24
+
25
+ {%- comment -%} The request url with below domain will be cached. {%- endcomment -%}
26
+ allowHosts: [
27
+ {% if site.img_cdn and site.img_cdn contains '//' %}
28
+ '{{ site.img_cdn | split: '//' | last | split: '/' | first }}',
29
+ {% endif %}
30
+
31
+ {%- unless site.assets.self_host.enabled -%}
32
+ {% for cdn in site.data.origin["cors"].cdns %}
33
+ '{{ cdn.url | split: "//" | last }}'
34
+ {%- unless forloop.last -%},{%- endunless -%}
35
+ {% endfor %}
36
+ {% endunless %}
37
+ ],
38
+
39
+ {%- comment -%} The request url with below path will not be cached. {%- endcomment -%}
40
+ denyPaths: [
41
+ {% for path in site.pwa.cache.deny_paths %}
42
+ {% unless path == empty %}
43
+ '{{ path | relative_url }}'{%- unless forloop.last -%},{%- endunless -%}
44
+ {% endunless %}
45
+ {% endfor %}
46
+ ],
47
+ purge: false
48
+ {% else %}
49
+ purge: true
50
+ {% endif %}
51
+ };
@@ -0,0 +1,54 @@
1
+ ---
2
+ layout: compress
3
+ permalink: /assets/js/dist/:basename.min.js
4
+ ---
5
+
6
+ if ('serviceWorker' in navigator) {
7
+ const isEnabled = '{{ site.pwa.enabled }}' === 'true';
8
+
9
+ if (isEnabled) {
10
+ const swUrl = '{{ '/sw.min.js' | relative_url }}';
11
+ const $notification = $('#notification');
12
+ const $btnRefresh = $('#notification .toast-body>button');
13
+
14
+ navigator.serviceWorker.register(swUrl).then((registration) => {
15
+ {% comment %}In case the user ignores the notification{% endcomment %}
16
+ if (registration.waiting) {
17
+ $notification.toast('show');
18
+ }
19
+
20
+ registration.addEventListener('updatefound', () => {
21
+ registration.installing.addEventListener('statechange', () => {
22
+ if (registration.waiting) {
23
+ if (navigator.serviceWorker.controller) {
24
+ $notification.toast('show');
25
+ }
26
+ }
27
+ });
28
+ });
29
+
30
+ $btnRefresh.on('click', () => {
31
+ if (registration.waiting) {
32
+ registration.waiting.postMessage('SKIP_WAITING');
33
+ }
34
+ $notification.toast('hide');
35
+ });
36
+ });
37
+
38
+ let refreshing = false;
39
+
40
+ {% comment %}Detect controller change and refresh all the opened tabs{% endcomment %}
41
+ navigator.serviceWorker.addEventListener('controllerchange', () => {
42
+ if (!refreshing) {
43
+ window.location.reload();
44
+ refreshing = true;
45
+ }
46
+ });
47
+ } else {
48
+ navigator.serviceWorker.getRegistrations().then(function (registrations) {
49
+ for (let registration of registrations) {
50
+ registration.unregister();
51
+ }
52
+ });
53
+ }
54
+ }
@@ -0,0 +1,101 @@
1
+ ---
2
+ layout: compress
3
+ permalink: /:basename.min.js
4
+ # PWA service worker
5
+ ---
6
+
7
+ const swconfUrl = '{{ '/assets/js/data/swconf.js' | relative_url }}';
8
+
9
+ importScripts(swconfUrl);
10
+ const purge = swconf.purge;
11
+
12
+ function verifyHost(url) {
13
+ for (const host of swconf.allowHosts) {
14
+ const regex = RegExp(`^http(s)?://${host}/`);
15
+ if (regex.test(url)) {
16
+ return true;
17
+ }
18
+ }
19
+ return false;
20
+ }
21
+
22
+ function verifyUrl(url) {
23
+ if (!verifyHost(url)) {
24
+ return false;
25
+ }
26
+
27
+ const requestPath = new URL(url).pathname;
28
+
29
+ for (const path of swconf.denyPaths) {
30
+ if (requestPath.startsWith(path)) {
31
+ return false;
32
+ }
33
+ }
34
+ return true;
35
+ }
36
+
37
+ if (!purge) {
38
+ swconf.allowHosts.push(location.host);
39
+ }
40
+
41
+ self.addEventListener('install', (event) => {
42
+ if (purge) {
43
+ return;
44
+ }
45
+
46
+ event.waitUntil(
47
+ caches.open(swconf.cacheName).then((cache) => {
48
+ return cache.addAll(swconf.resources);
49
+ })
50
+ );
51
+ });
52
+
53
+ self.addEventListener('activate', (event) => {
54
+ event.waitUntil(
55
+ caches.keys().then((keyList) => {
56
+ return Promise.all(
57
+ keyList.map((key) => {
58
+ if (purge) {
59
+ return caches.delete(key);
60
+ } else {
61
+ if (key !== swconf.cacheName) {
62
+ return caches.delete(key);
63
+ }
64
+ }
65
+ })
66
+ );
67
+ })
68
+ );
69
+ });
70
+
71
+ self.addEventListener('message', (event) => {
72
+ if (event.data === 'SKIP_WAITING') {
73
+ self.skipWaiting();
74
+ }
75
+ });
76
+
77
+ self.addEventListener('fetch', (event) => {
78
+ event.respondWith(
79
+ caches.match(event.request).then((response) => {
80
+ if (response) {
81
+ return response;
82
+ }
83
+
84
+ return fetch(event.request).then((response) => {
85
+ const url = event.request.url;
86
+
87
+ if (purge || event.request.method !== 'GET' || !verifyUrl(url)) {
88
+ return response;
89
+ }
90
+
91
+ {% comment %}See: <https://developers.google.com/web/fundamentals/primers/service-workers#cache_and_return_requests>{% endcomment %}
92
+ let responseToCache = response.clone();
93
+
94
+ caches.open(swconf.cacheName).then((cache) => {
95
+ cache.put(event.request, responseToCache);
96
+ });
97
+ return response;
98
+ });
99
+ })
100
+ );
101
+ });
data/assets/robots.txt ADDED
@@ -0,0 +1,10 @@
1
+ ---
2
+ permalink: /robots.txt
3
+ # The robots rules
4
+ ---
5
+
6
+ User-agent: *
7
+
8
+ Disallow: /norobots/
9
+
10
+ Sitemap: {{ '/sitemap.xml' | absolute_url }}
metadata ADDED
@@ -0,0 +1,249 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-chirpy-customized-upe
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Jo Cruise
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-02-22 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-redirect-from
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.16'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.16'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-seo-tag
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.8'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.8'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-archives
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.2'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.2'
83
+ - !ruby/object:Gem::Dependency
84
+ name: jekyll-sitemap
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.4'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.4'
97
+ - !ruby/object:Gem::Dependency
98
+ name: jekyll-include-cache
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '0.2'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '0.2'
111
+ description:
112
+ email:
113
+ - 1973851482@qq.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - LICENSE
119
+ - README.md
120
+ - _data/locales/ar.yml
121
+ - _data/locales/bg-BG.yml
122
+ - _data/locales/cs-CZ.yml
123
+ - _data/locales/de-DE.yml
124
+ - _data/locales/el-GR.yml
125
+ - _data/locales/en.yml
126
+ - _data/locales/es-ES.yml
127
+ - _data/locales/fi-FI.yml
128
+ - _data/locales/fr-FR.yml
129
+ - _data/locales/hu-HU.yml
130
+ - _data/locales/id-ID.yml
131
+ - _data/locales/it-IT.yml
132
+ - _data/locales/ko-KR.yml
133
+ - _data/locales/my-MM.yml
134
+ - _data/locales/pt-BR.yml
135
+ - _data/locales/ru-RU.yml
136
+ - _data/locales/sl-SI.yml
137
+ - _data/locales/sv-SE.yml
138
+ - _data/locales/th.yml
139
+ - _data/locales/tr-TR.yml
140
+ - _data/locales/uk-UA.yml
141
+ - _data/locales/vi-VN.yml
142
+ - _data/locales/zh-CN.yml
143
+ - _data/locales/zh-TW.yml
144
+ - _data/origin/basic.yml
145
+ - _data/origin/cors.yml
146
+ - _includes/comments.html
147
+ - _includes/comments/disqus.html
148
+ - _includes/comments/giscus.html
149
+ - _includes/comments/utterances.html
150
+ - _includes/datetime.html
151
+ - _includes/embed/bilibili.html
152
+ - _includes/embed/twitch.html
153
+ - _includes/embed/youtube.html
154
+ - _includes/favicons.html
155
+ - _includes/footer.html
156
+ - _includes/goatcounter.html
157
+ - _includes/google-analytics.html
158
+ - _includes/head.html
159
+ - _includes/img-url.html
160
+ - _includes/js-selector.html
161
+ - _includes/jsdelivr-combine.html
162
+ - _includes/lang.html
163
+ - _includes/language-alias.html
164
+ - _includes/mermaid.html
165
+ - _includes/metadata-hook.html
166
+ - _includes/mode-toggle.html
167
+ - _includes/no-linenos.html
168
+ - _includes/notification.html
169
+ - _includes/origin-type.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.html
180
+ - _includes/topbar.html
181
+ - _includes/trending-tags.html
182
+ - _includes/update-list.html
183
+ - _layouts/archives.html
184
+ - _layouts/categories.html
185
+ - _layouts/category.html
186
+ - _layouts/compress.html
187
+ - _layouts/default.html
188
+ - _layouts/home.html
189
+ - _layouts/page.html
190
+ - _layouts/post.html
191
+ - _layouts/tag.html
192
+ - _layouts/tags.html
193
+ - _sass/addon/commons.scss
194
+ - _sass/addon/module.scss
195
+ - _sass/addon/syntax.scss
196
+ - _sass/addon/variables.scss
197
+ - _sass/colors/syntax-dark.scss
198
+ - _sass/colors/syntax-light.scss
199
+ - _sass/colors/typography-dark.scss
200
+ - _sass/colors/typography-light.scss
201
+ - _sass/layout/archives.scss
202
+ - _sass/layout/categories.scss
203
+ - _sass/layout/category-tag.scss
204
+ - _sass/layout/home.scss
205
+ - _sass/layout/post.scss
206
+ - _sass/layout/tags.scss
207
+ - _sass/main.scss
208
+ - _sass/variables-hook.scss
209
+ - assets/404.html
210
+ - assets/css/jekyll-theme-chirpy.scss
211
+ - assets/feed.xml
212
+ - assets/img/favicons/android-chrome-192x192.png
213
+ - assets/img/favicons/android-chrome-512x512.png
214
+ - assets/img/favicons/apple-touch-icon.png
215
+ - assets/img/favicons/browserconfig.xml
216
+ - assets/img/favicons/favicon-16x16.png
217
+ - assets/img/favicons/favicon-32x32.png
218
+ - assets/img/favicons/favicon.ico
219
+ - assets/img/favicons/mstile-150x150.png
220
+ - assets/img/favicons/site.webmanifest
221
+ - assets/js/data/search.json
222
+ - assets/js/data/swconf.js
223
+ - assets/js/pwa/app.js
224
+ - assets/js/pwa/sw.js
225
+ - assets/robots.txt
226
+ homepage: https://github.com/Jo-CRuiSe
227
+ licenses:
228
+ - MIT
229
+ metadata: {}
230
+ post_install_message:
231
+ rdoc_options: []
232
+ require_paths:
233
+ - lib
234
+ required_ruby_version: !ruby/object:Gem::Requirement
235
+ requirements:
236
+ - - ">="
237
+ - !ruby/object:Gem::Version
238
+ version: '3.0'
239
+ required_rubygems_version: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - ">="
242
+ - !ruby/object:Gem::Version
243
+ version: '0'
244
+ requirements: []
245
+ rubygems_version: 3.3.26
246
+ signing_key:
247
+ specification_version: 4
248
+ summary: A minimal, responsive, and feature-rich Jekyll theme for technical writing.
249
+ test_files: []