jekyll-theme-abd3lraouf 5.2.6 → 5.2.7
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 +4 -4
- data/LICENSE +21 -21
- data/README.md +105 -105
- data/_data/assets/cross_origin.yml +62 -62
- data/_data/assets/self_host.yml +51 -51
- data/_data/authors.yml +17 -17
- data/_data/contact.yml +30 -30
- data/_data/locales/bg-BG.yml +83 -83
- data/_data/locales/en.yml +83 -83
- data/_data/locales/es-ES.yml +79 -79
- data/_data/locales/fr-FR.yml +79 -79
- data/_data/locales/hu-HU.yml +81 -81
- data/_data/locales/id-ID.yml +79 -79
- data/_data/locales/ko-KR.yml +79 -79
- data/_data/locales/my-MM.yml +79 -79
- data/_data/locales/pt-BR.yml +79 -79
- data/_data/locales/ru-RU.yml +79 -79
- data/_data/locales/tr-TR.yml +79 -79
- data/_data/locales/uk-UA.yml +79 -79
- data/_data/locales/vi-VN.yml +77 -77
- data/_data/locales/zh-CN.yml +78 -78
- data/_data/share.yml +27 -27
- data/_includes/assets-origin.html +12 -12
- data/_includes/comments/disqus.html +54 -54
- data/_includes/comments/giscus.html +56 -56
- data/_includes/comments/utterances.html +51 -51
- data/_includes/comments.html +5 -5
- data/_includes/datetime.html +21 -21
- data/_includes/favicons.html +17 -17
- data/_includes/footer.html +17 -36
- data/_includes/google-analytics.html +14 -14
- data/_includes/head.html +116 -116
- data/_includes/js-selector.html +104 -104
- data/_includes/jsdelivr-combine.html +32 -32
- data/_includes/lang.html +8 -8
- data/_includes/language-alias.html +70 -70
- data/_includes/mermaid.html +57 -57
- data/_includes/mode-toggle.html +129 -129
- data/_includes/no-linenos.html +10 -10
- data/_includes/post-nav.html +30 -30
- data/_includes/post-paginator.html +88 -88
- data/_includes/post-sharing.html +27 -27
- data/_includes/read-time.html +30 -30
- data/_includes/refactor-content.html +282 -282
- data/_includes/related-posts.html +103 -103
- data/_includes/search-loader.html +46 -46
- data/_includes/search-results.html +11 -11
- data/_includes/sidebar.html +93 -93
- data/_includes/toc.html +16 -16
- data/_includes/topbar.html +70 -70
- data/_includes/trending-tags.html +50 -50
- data/_includes/update-list.html +40 -40
- data/_layouts/archives.html +48 -48
- data/_layouts/categories.html +120 -120
- data/_layouts/category.html +24 -24
- data/_layouts/compress.html +10 -10
- data/_layouts/default.html +74 -74
- data/_layouts/home.html +103 -103
- data/_layouts/page.html +64 -64
- data/_layouts/post.html +159 -159
- data/_layouts/tag.html +23 -23
- data/_layouts/tags.html +23 -23
- data/_plugins/posts-lastmod-hook.rb +14 -14
- data/_sass/addon/commons.scss +1678 -1680
- data/_sass/addon/module.scss +151 -151
- data/_sass/addon/syntax.scss +289 -289
- data/_sass/addon/variables.scss +34 -34
- data/_sass/colors/dark-syntax.scss +88 -88
- data/_sass/colors/dark-typography.scss +157 -157
- data/_sass/colors/light-syntax.scss +84 -84
- data/_sass/colors/light-typography.scss +94 -94
- data/_sass/layout/archives.scss +147 -147
- data/_sass/layout/categories.scss +67 -67
- data/_sass/layout/category-tag.scss +73 -73
- data/_sass/layout/home.scss +184 -184
- data/_sass/layout/post.scss +369 -369
- data/_sass/layout/tags.scss +19 -19
- data/_sass/variables-hook.scss +3 -3
- data/_tabs/about.md +8 -8
- data/_tabs/archives.md +7 -7
- data/_tabs/categories.md +6 -6
- data/_tabs/tags.md +6 -6
- data/assets/404.html +16 -16
- data/assets/css/style.scss +12 -12
- data/assets/feed.xml +61 -61
- data/assets/img/favicons/browserconfig.xml +13 -13
- data/assets/img/favicons/site.webmanifest +26 -26
- data/assets/js/data/search.json +18 -18
- data/assets/js/data/swcache.js +55 -55
- data/assets/js/pwa/app.js +47 -47
- data/assets/js/pwa/sw.js +89 -89
- data/assets/js/pwa/unregister.js +12 -12
- data/assets/robots.txt +10 -10
- data/index.html +4 -4
- metadata +7 -7
data/assets/js/pwa/sw.js
CHANGED
@@ -1,89 +1,89 @@
|
|
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
|
-
});
|
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
|
+
});
|
data/assets/js/pwa/unregister.js
CHANGED
@@ -1,12 +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
|
-
}
|
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
CHANGED
@@ -1,10 +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 }}
|
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 }}
|
data/index.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
---
|
2
|
-
layout: home
|
3
|
-
# Index page
|
4
|
-
---
|
1
|
+
---
|
2
|
+
layout: home
|
3
|
+
# Index page
|
4
|
+
---
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-abd3lraouf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.2.
|
4
|
+
version: 5.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AbdElraouf Sabri
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-07-
|
11
|
+
date: 2022-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -94,7 +94,7 @@ dependencies:
|
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '1.4'
|
97
|
-
description:
|
97
|
+
description:
|
98
98
|
email:
|
99
99
|
- abdelraoufsabri@gmail.com
|
100
100
|
executables: []
|
@@ -220,7 +220,7 @@ metadata:
|
|
220
220
|
source_code_uri: https://github.com/abd3lraouf/jekyll-theme-abd3lraouf
|
221
221
|
wiki_uri: https://github.com/abd3lraouf/jekyll-theme-abd3lraouf/wiki
|
222
222
|
plugin_type: theme
|
223
|
-
post_install_message:
|
223
|
+
post_install_message:
|
224
224
|
rdoc_options: []
|
225
225
|
require_paths:
|
226
226
|
- lib
|
@@ -235,8 +235,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
235
235
|
- !ruby/object:Gem::Version
|
236
236
|
version: '0'
|
237
237
|
requirements: []
|
238
|
-
rubygems_version: 3.3.
|
239
|
-
signing_key:
|
238
|
+
rubygems_version: 3.3.15
|
239
|
+
signing_key:
|
240
240
|
specification_version: 4
|
241
241
|
summary: Chirpy is a minimal, sidebar, responsive web design Jekyll theme that focuses
|
242
242
|
on text presentation.
|