jekyll-theme-chirpy-birdly 6.0.2

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 +95 -0
  4. data/_data/authors.yml +17 -0
  5. data/_data/contact.yml +28 -0
  6. data/_data/locales/ar.yml +91 -0
  7. data/_data/locales/bg-BG.yml +81 -0
  8. data/_data/locales/cs-CZ.yml +89 -0
  9. data/_data/locales/de-DE.yml +80 -0
  10. data/_data/locales/el-GR.yml +91 -0
  11. data/_data/locales/en.yml +91 -0
  12. data/_data/locales/es-ES.yml +77 -0
  13. data/_data/locales/fi-FI.yml +90 -0
  14. data/_data/locales/fr-FR.yml +77 -0
  15. data/_data/locales/hu-HU.yml +79 -0
  16. data/_data/locales/id-ID.yml +77 -0
  17. data/_data/locales/it-IT.yml +90 -0
  18. data/_data/locales/ko-KR.yml +84 -0
  19. data/_data/locales/my-MM.yml +77 -0
  20. data/_data/locales/pt-BR.yml +77 -0
  21. data/_data/locales/ru-RU.yml +77 -0
  22. data/_data/locales/sl-SI.yml +91 -0
  23. data/_data/locales/sv-SE.yml +91 -0
  24. data/_data/locales/th.yml +91 -0
  25. data/_data/locales/tr-TR.yml +77 -0
  26. data/_data/locales/uk-UA.yml +77 -0
  27. data/_data/locales/vi-VN.yml +76 -0
  28. data/_data/locales/zh-CN.yml +83 -0
  29. data/_data/locales/zh-TW.yml +83 -0
  30. data/_data/origin/basic.yml +48 -0
  31. data/_data/origin/cors.yml +59 -0
  32. data/_data/share.yml +25 -0
  33. data/_includes/comments/disqus.html +49 -0
  34. data/_includes/comments/giscus.html +64 -0
  35. data/_includes/comments/utterances.html +51 -0
  36. data/_includes/comments.html +5 -0
  37. data/_includes/datetime.html +19 -0
  38. data/_includes/embed/twitch.html +4 -0
  39. data/_includes/embed/youtube.html +6 -0
  40. data/_includes/favicons.html +17 -0
  41. data/_includes/footer.html +34 -0
  42. data/_includes/google-analytics.html +14 -0
  43. data/_includes/head.html +95 -0
  44. data/_includes/js-selector.html +106 -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/origin-type.html +13 -0
  53. data/_includes/post-nav.html +37 -0
  54. data/_includes/post-paginator.html +89 -0
  55. data/_includes/post-sharing.html +35 -0
  56. data/_includes/read-time.html +37 -0
  57. data/_includes/refactor-content.html +286 -0
  58. data/_includes/related-posts.html +104 -0
  59. data/_includes/search-loader.html +45 -0
  60. data/_includes/search-results.html +10 -0
  61. data/_includes/sidebar.html +104 -0
  62. data/_includes/toc.html +13 -0
  63. data/_includes/topbar.html +70 -0
  64. data/_includes/trending-tags.html +46 -0
  65. data/_includes/update-list.html +39 -0
  66. data/_layouts/archives.html +36 -0
  67. data/_layouts/categories.html +138 -0
  68. data/_layouts/category.html +24 -0
  69. data/_layouts/compress.html +10 -0
  70. data/_layouts/default.html +76 -0
  71. data/_layouts/home.html +119 -0
  72. data/_layouts/page.html +64 -0
  73. data/_layouts/post.html +133 -0
  74. data/_layouts/tag.html +23 -0
  75. data/_layouts/tags.html +22 -0
  76. data/_sass/addon/commons.scss +1582 -0
  77. data/_sass/addon/module.scss +173 -0
  78. data/_sass/addon/syntax.scss +270 -0
  79. data/_sass/addon/variables.scss +27 -0
  80. data/_sass/colors/dark-syntax.scss +91 -0
  81. data/_sass/colors/dark-typography.scss +151 -0
  82. data/_sass/colors/light-syntax.scss +83 -0
  83. data/_sass/colors/light-typography.scss +109 -0
  84. data/_sass/jekyll-theme-chirpy-birdly.scss +19 -0
  85. data/_sass/layout/archives.scss +144 -0
  86. data/_sass/layout/categories.scss +83 -0
  87. data/_sass/layout/category-tag.scss +77 -0
  88. data/_sass/layout/home.scss +219 -0
  89. data/_sass/layout/post.scss +417 -0
  90. data/_sass/layout/tags.scss +19 -0
  91. data/_sass/variables-hook.scss +3 -0
  92. data/assets/404.html +16 -0
  93. data/assets/css/style.scss +6 -0
  94. data/assets/feed.xml +61 -0
  95. data/assets/img/favicons/android-chrome-192x192.png +0 -0
  96. data/assets/img/favicons/android-chrome-512x512.png +0 -0
  97. data/assets/img/favicons/apple-touch-icon.png +0 -0
  98. data/assets/img/favicons/browserconfig.xml +13 -0
  99. data/assets/img/favicons/favicon-16x16.png +0 -0
  100. data/assets/img/favicons/favicon-32x32.png +0 -0
  101. data/assets/img/favicons/favicon.ico +0 -0
  102. data/assets/img/favicons/mstile-150x150.png +0 -0
  103. data/assets/img/favicons/site.webmanifest +26 -0
  104. data/assets/js/data/search.json +20 -0
  105. data/assets/js/data/swcache.js +50 -0
  106. data/assets/js/pwa/app.js +47 -0
  107. data/assets/js/pwa/sw.js +90 -0
  108. data/assets/js/pwa/unregister.js +12 -0
  109. data/assets/robots.txt +10 -0
  110. metadata +241 -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,50 @@
1
+ ---
2
+ layout: compress
3
+
4
+ # The list to be cached by PWA
5
+ ---
6
+
7
+ const resource = [
8
+ /* --- CSS --- */
9
+ '{{ "/assets/css/style.css" | relative_url }}',
10
+
11
+ /* --- PWA --- */
12
+ '{{ "/app.js" | relative_url }}',
13
+ '{{ "/sw.js" | relative_url }}',
14
+
15
+ /* --- HTML --- */
16
+ '{{ "/index.html" | relative_url }}',
17
+ '{{ "/404.html" | relative_url }}',
18
+
19
+ {% for tab in site.tabs %}
20
+ '{{ tab.url | relative_url }}',
21
+ {% endfor %}
22
+
23
+ /* --- Favicons & compressed JS --- */
24
+ {% assign cache_list = site.static_files | where: 'swcache', true %}
25
+ {% for file in cache_list %}
26
+ '{{ file.path | relative_url }}'{%- unless forloop.last -%},{%- endunless -%}
27
+ {% endfor %}
28
+ ];
29
+
30
+ /* The request url with below domain will be cached */
31
+ const allowedDomains = [
32
+ {% if site.google_analytics.id != empty and site.google_analytics.id %}
33
+ 'www.googletagmanager.com',
34
+ 'www.google-analytics.com',
35
+ {% endif %}
36
+
37
+ '{{ site.url | split: "//" | last }}',
38
+
39
+ {% if site.img_cdn contains '//' and site.img_cdn %}
40
+ '{{ site.img_cdn | split: '//' | last | split: '/' | first }}',
41
+ {% endif %}
42
+
43
+ 'fonts.gstatic.com',
44
+ 'fonts.googleapis.com',
45
+ 'cdn.jsdelivr.net',
46
+ 'polyfill.io'
47
+ ];
48
+
49
+ /* Requests that include the following path will be banned */
50
+ const denyUrls = [];
@@ -0,0 +1,47 @@
1
+ ---
2
+ layout: compress
3
+ permalink: '/app.js'
4
+ ---
5
+
6
+ const $notification = $('#notification');
7
+ const $btnRefresh = $('#notification .toast-body>button');
8
+
9
+ if ('serviceWorker' in navigator) {
10
+ /* Registering Service Worker */
11
+ navigator.serviceWorker.register('{{ "/sw.js" | relative_url }}')
12
+ .then(registration => {
13
+
14
+ /* in case the user ignores the notification */
15
+ if (registration.waiting) {
16
+ $notification.toast('show');
17
+ }
18
+
19
+ registration.addEventListener('updatefound', () => {
20
+ registration.installing.addEventListener('statechange', () => {
21
+ if (registration.waiting) {
22
+ if (navigator.serviceWorker.controller) {
23
+ $notification.toast('show');
24
+ }
25
+ }
26
+ });
27
+ });
28
+
29
+ $btnRefresh.click(() => {
30
+ if (registration.waiting) {
31
+ registration.waiting.postMessage('SKIP_WAITING');
32
+ }
33
+ $notification.toast('hide');
34
+ });
35
+ });
36
+
37
+ let refreshing = false;
38
+
39
+ /* Detect controller change and refresh all the opened tabs */
40
+ navigator.serviceWorker.addEventListener('controllerchange', () => {
41
+ if (!refreshing) {
42
+ window.location.reload();
43
+ refreshing = true;
44
+ }
45
+ });
46
+ }
47
+
@@ -0,0 +1,90 @@
1
+ ---
2
+ layout: compress
3
+ permalink: '/sw.js'
4
+ # PWA service worker
5
+ ---
6
+
7
+ self.importScripts('{{ "/assets/js/data/swcache.js" | relative_url }}');
8
+
9
+ const cacheName = 'chirpy-{{ "now" | date: "%Y%m%d.%H%M%S" }}';
10
+
11
+ function verifyDomain(url) {
12
+ for (const domain of allowedDomains) {
13
+ const regex = RegExp(`^http(s)?:\/\/${domain}\/`);
14
+ if (regex.test(url)) {
15
+ return true;
16
+ }
17
+ }
18
+
19
+ return false;
20
+ }
21
+
22
+ function isExcluded(url) {
23
+ for (const item of denyUrls) {
24
+ if (url === item) {
25
+ return true;
26
+ }
27
+ }
28
+ return false;
29
+ }
30
+
31
+ self.addEventListener('install', event => {
32
+ event.waitUntil(
33
+ caches.open(cacheName).then(cache => {
34
+ return cache.addAll(resource);
35
+ })
36
+ );
37
+ });
38
+
39
+ self.addEventListener('activate', event => {
40
+ event.waitUntil(
41
+ caches.keys().then(keyList => {
42
+ return Promise.all(
43
+ keyList.map(key => {
44
+ if (key !== cacheName) {
45
+ return caches.delete(key);
46
+ }
47
+ })
48
+ );
49
+ })
50
+ );
51
+ });
52
+
53
+ self.addEventListener('message', (event) => {
54
+ if (event.data === 'SKIP_WAITING') {
55
+ self.skipWaiting();
56
+ }
57
+ });
58
+
59
+ self.addEventListener('fetch', event => {
60
+ event.respondWith(
61
+ caches.match(event.request).then(response => {
62
+ if (response) {
63
+ return response;
64
+ }
65
+
66
+ return fetch(event.request).then(response => {
67
+ const url = event.request.url;
68
+
69
+ if (event.request.method !== 'GET' ||
70
+ !verifyDomain(url) ||
71
+ isExcluded(url)) {
72
+ return response;
73
+ }
74
+
75
+ /*
76
+ see: <https://developers.google.com/web/fundamentals/primers/service-workers#cache_and_return_requests>
77
+ */
78
+ let responseToCache = response.clone();
79
+
80
+ caches.open(cacheName).then(cache => {
81
+ /* console.log('[sw] Caching new resource: ' + event.request.url); */
82
+ cache.put(event.request, responseToCache);
83
+ });
84
+
85
+ return response;
86
+ });
87
+ })
88
+ );
89
+ });
90
+
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: compress
3
+ permalink: '/unregister.js'
4
+ ---
5
+
6
+ if ('serviceWorker' in navigator) {
7
+ navigator.serviceWorker.getRegistrations().then((registrations) => {
8
+ for (let reg of registrations) {
9
+ reg.unregister();
10
+ }
11
+ });
12
+ }
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,241 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-chirpy-birdly
3
+ version: !ruby/object:Gem::Version
4
+ version: 6.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Jelili Adesina
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-06-15 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.7'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.7'
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
+ description:
98
+ email:
99
+ - jelilio.adesina@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - LICENSE
105
+ - README.md
106
+ - _data/authors.yml
107
+ - _data/contact.yml
108
+ - _data/locales/ar.yml
109
+ - _data/locales/bg-BG.yml
110
+ - _data/locales/cs-CZ.yml
111
+ - _data/locales/de-DE.yml
112
+ - _data/locales/el-GR.yml
113
+ - _data/locales/en.yml
114
+ - _data/locales/es-ES.yml
115
+ - _data/locales/fi-FI.yml
116
+ - _data/locales/fr-FR.yml
117
+ - _data/locales/hu-HU.yml
118
+ - _data/locales/id-ID.yml
119
+ - _data/locales/it-IT.yml
120
+ - _data/locales/ko-KR.yml
121
+ - _data/locales/my-MM.yml
122
+ - _data/locales/pt-BR.yml
123
+ - _data/locales/ru-RU.yml
124
+ - _data/locales/sl-SI.yml
125
+ - _data/locales/sv-SE.yml
126
+ - _data/locales/th.yml
127
+ - _data/locales/tr-TR.yml
128
+ - _data/locales/uk-UA.yml
129
+ - _data/locales/vi-VN.yml
130
+ - _data/locales/zh-CN.yml
131
+ - _data/locales/zh-TW.yml
132
+ - _data/origin/basic.yml
133
+ - _data/origin/cors.yml
134
+ - _data/share.yml
135
+ - _includes/comments.html
136
+ - _includes/comments/disqus.html
137
+ - _includes/comments/giscus.html
138
+ - _includes/comments/utterances.html
139
+ - _includes/datetime.html
140
+ - _includes/embed/twitch.html
141
+ - _includes/embed/youtube.html
142
+ - _includes/favicons.html
143
+ - _includes/footer.html
144
+ - _includes/google-analytics.html
145
+ - _includes/head.html
146
+ - _includes/js-selector.html
147
+ - _includes/jsdelivr-combine.html
148
+ - _includes/lang.html
149
+ - _includes/language-alias.html
150
+ - _includes/mermaid.html
151
+ - _includes/metadata-hook.html
152
+ - _includes/mode-toggle.html
153
+ - _includes/no-linenos.html
154
+ - _includes/origin-type.html
155
+ - _includes/post-nav.html
156
+ - _includes/post-paginator.html
157
+ - _includes/post-sharing.html
158
+ - _includes/read-time.html
159
+ - _includes/refactor-content.html
160
+ - _includes/related-posts.html
161
+ - _includes/search-loader.html
162
+ - _includes/search-results.html
163
+ - _includes/sidebar.html
164
+ - _includes/toc.html
165
+ - _includes/topbar.html
166
+ - _includes/trending-tags.html
167
+ - _includes/update-list.html
168
+ - _layouts/archives.html
169
+ - _layouts/categories.html
170
+ - _layouts/category.html
171
+ - _layouts/compress.html
172
+ - _layouts/default.html
173
+ - _layouts/home.html
174
+ - _layouts/page.html
175
+ - _layouts/post.html
176
+ - _layouts/tag.html
177
+ - _layouts/tags.html
178
+ - _sass/addon/commons.scss
179
+ - _sass/addon/module.scss
180
+ - _sass/addon/syntax.scss
181
+ - _sass/addon/variables.scss
182
+ - _sass/colors/dark-syntax.scss
183
+ - _sass/colors/dark-typography.scss
184
+ - _sass/colors/light-syntax.scss
185
+ - _sass/colors/light-typography.scss
186
+ - _sass/jekyll-theme-chirpy-birdly.scss
187
+ - _sass/layout/archives.scss
188
+ - _sass/layout/categories.scss
189
+ - _sass/layout/category-tag.scss
190
+ - _sass/layout/home.scss
191
+ - _sass/layout/post.scss
192
+ - _sass/layout/tags.scss
193
+ - _sass/variables-hook.scss
194
+ - assets/404.html
195
+ - assets/css/style.scss
196
+ - assets/feed.xml
197
+ - assets/img/favicons/android-chrome-192x192.png
198
+ - assets/img/favicons/android-chrome-512x512.png
199
+ - assets/img/favicons/apple-touch-icon.png
200
+ - assets/img/favicons/browserconfig.xml
201
+ - assets/img/favicons/favicon-16x16.png
202
+ - assets/img/favicons/favicon-32x32.png
203
+ - assets/img/favicons/favicon.ico
204
+ - assets/img/favicons/mstile-150x150.png
205
+ - assets/img/favicons/site.webmanifest
206
+ - assets/js/data/search.json
207
+ - assets/js/data/swcache.js
208
+ - assets/js/pwa/app.js
209
+ - assets/js/pwa/sw.js
210
+ - assets/js/pwa/unregister.js
211
+ - assets/robots.txt
212
+ homepage: https://github.com/jelilio/jekyll-theme-chirpy-birdly
213
+ licenses:
214
+ - MIT
215
+ metadata:
216
+ bug_tracker_uri: https://github.com/jelilio/jekyll-theme-chirpy-birdly/issues
217
+ documentation_uri: https://github.com/jelilio/jekyll-theme-chirpy-birdly/#readme
218
+ homepage_uri: https://jelilio.github.io/chirpy-demo
219
+ source_code_uri: https://github.com/jelilio/jekyll-theme-chirpy-birdly
220
+ wiki_uri: https://github.com/jelilio/jekyll-theme-chirpy-birdly/wiki
221
+ plugin_type: theme
222
+ post_install_message:
223
+ rdoc_options: []
224
+ require_paths:
225
+ - lib
226
+ required_ruby_version: !ruby/object:Gem::Requirement
227
+ requirements:
228
+ - - ">="
229
+ - !ruby/object:Gem::Version
230
+ version: '2.6'
231
+ required_rubygems_version: !ruby/object:Gem::Requirement
232
+ requirements:
233
+ - - ">="
234
+ - !ruby/object:Gem::Version
235
+ version: '0'
236
+ requirements: []
237
+ rubygems_version: 3.3.26
238
+ signing_key:
239
+ specification_version: 4
240
+ summary: A minimal, responsive and feature-rich Jekyll theme for technical writing.
241
+ test_files: []