jekyll-theme-chirpy-customized-by-alazaroc 5.4.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 +106 -0
  4. data/_data/assets/cross_origin.yml +62 -0
  5. data/_data/assets/self_host.yml +51 -0
  6. data/_data/authors.yml +17 -0
  7. data/_data/contact.yml +30 -0
  8. data/_data/locales/ar.yml +93 -0
  9. data/_data/locales/bg-BG.yml +83 -0
  10. data/_data/locales/cs-CZ.yml +91 -0
  11. data/_data/locales/de-DE.yml +82 -0
  12. data/_data/locales/en.yml +93 -0
  13. data/_data/locales/es-ES.yml +79 -0
  14. data/_data/locales/fi-FI.yml +92 -0
  15. data/_data/locales/fr-FR.yml +79 -0
  16. data/_data/locales/hu-HU.yml +81 -0
  17. data/_data/locales/id-ID.yml +79 -0
  18. data/_data/locales/it-IT.yml +93 -0
  19. data/_data/locales/ko-KR.yml +86 -0
  20. data/_data/locales/my-MM.yml +79 -0
  21. data/_data/locales/pt-BR.yml +79 -0
  22. data/_data/locales/ru-RU.yml +79 -0
  23. data/_data/locales/tr-TR.yml +79 -0
  24. data/_data/locales/uk-UA.yml +79 -0
  25. data/_data/locales/vi-VN.yml +77 -0
  26. data/_data/locales/zh-CN.yml +85 -0
  27. data/_data/share.yml +27 -0
  28. data/_includes/assets-origin.html +12 -0
  29. data/_includes/comments/disqus.html +54 -0
  30. data/_includes/comments/giscus.html +56 -0
  31. data/_includes/comments/utterances.html +51 -0
  32. data/_includes/comments.html +5 -0
  33. data/_includes/datetime.html +15 -0
  34. data/_includes/embed/twitch.html +4 -0
  35. data/_includes/embed/youtube.html +6 -0
  36. data/_includes/favicons.html +17 -0
  37. data/_includes/footer.html +36 -0
  38. data/_includes/google-analytics.html +14 -0
  39. data/_includes/head.html +115 -0
  40. data/_includes/js-selector.html +99 -0
  41. data/_includes/jsdelivr-combine.html +32 -0
  42. data/_includes/language-alias.html +70 -0
  43. data/_includes/mermaid.html +59 -0
  44. data/_includes/mode-toggle.html +129 -0
  45. data/_includes/no-linenos.html +10 -0
  46. data/_includes/post-nav.html +30 -0
  47. data/_includes/post-paginator.html +88 -0
  48. data/_includes/post-sharing.html +27 -0
  49. data/_includes/read-time.html +30 -0
  50. data/_includes/refactor-content.html +330 -0
  51. data/_includes/related-posts.html +103 -0
  52. data/_includes/search-loader.html +46 -0
  53. data/_includes/search-results.html +11 -0
  54. data/_includes/sidebar.html +103 -0
  55. data/_includes/toc.html +16 -0
  56. data/_includes/topbar.html +70 -0
  57. data/_includes/trending-tags.html +50 -0
  58. data/_includes/update-list.html +40 -0
  59. data/_layouts/archives.html +34 -0
  60. data/_layouts/categories.html +118 -0
  61. data/_layouts/category.html +22 -0
  62. data/_layouts/compress.html +10 -0
  63. data/_layouts/default.html +71 -0
  64. data/_layouts/home.html +94 -0
  65. data/_layouts/page.html +63 -0
  66. data/_layouts/post.html +141 -0
  67. data/_layouts/tag.html +21 -0
  68. data/_layouts/tags.html +23 -0
  69. data/_sass/addon/commons.scss +1740 -0
  70. data/_sass/addon/module.scss +163 -0
  71. data/_sass/addon/syntax.scss +275 -0
  72. data/_sass/addon/variables.scss +30 -0
  73. data/_sass/colors/dark-syntax.scss +87 -0
  74. data/_sass/colors/dark-typography.scss +170 -0
  75. data/_sass/colors/light-syntax.scss +83 -0
  76. data/_sass/colors/light-typography.scss +104 -0
  77. data/_sass/jekyll-theme-chirpy-customized-by-alazaroc.scss +24 -0
  78. data/_sass/layout/archives.scss +136 -0
  79. data/_sass/layout/categories.scss +66 -0
  80. data/_sass/layout/category-tag.scss +73 -0
  81. data/_sass/layout/home.scss +178 -0
  82. data/_sass/layout/post.scss +387 -0
  83. data/_sass/layout/tags.scss +19 -0
  84. data/_sass/variables-hook.scss +3 -0
  85. data/assets/404.html +14 -0
  86. data/assets/css/style.scss +12 -0
  87. data/assets/feed.xml +61 -0
  88. data/assets/img/favicons/android-chrome-192x192.png +0 -0
  89. data/assets/img/favicons/android-chrome-512x512.png +0 -0
  90. data/assets/img/favicons/apple-touch-icon.png +0 -0
  91. data/assets/img/favicons/browserconfig.xml +13 -0
  92. data/assets/img/favicons/favicon-16x16.png +0 -0
  93. data/assets/img/favicons/favicon-32x32.png +0 -0
  94. data/assets/img/favicons/favicon.ico +0 -0
  95. data/assets/img/favicons/mstile-150x150.png +0 -0
  96. data/assets/img/favicons/site.webmanifest +26 -0
  97. data/assets/js/data/search.json +20 -0
  98. data/assets/js/data/swcache.js +54 -0
  99. data/assets/js/dist/categories.min.js +6 -0
  100. data/assets/js/dist/commons.min.js +6 -0
  101. data/assets/js/dist/home.min.js +6 -0
  102. data/assets/js/dist/misc.min.js +6 -0
  103. data/assets/js/dist/page.min.js +6 -0
  104. data/assets/js/dist/post.min.js +6 -0
  105. data/assets/js/dist/pvreport.min.js +6 -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 +242 -0
@@ -0,0 +1,79 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: ပို့စ်
7
+ category: ကဏ္ဍ
8
+ tag: နာမ(တက်ဂ်)
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: အဓိကစာမျက်နှာ
14
+ categories: ကဏ္ဍများ
15
+ tags: နာမ(တက်ဂ်)များ
16
+ archives: မှတ်တမ်း​တိုက်
17
+ about: အကြောင်းအရာ
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: ရှာဖွေမည်
22
+ cancel: ဖျက်သိမ်းမည်
23
+ no_results: အိုး! ဘာမှမရှိပါ
24
+
25
+ panel:
26
+ lastmod: မကြာသေးမီကမွမ်းမံထားသည်
27
+ trending_tags: ခေတ်စားနေသည့်တက်ဂ်များ
28
+ toc: အကြောင်းအရာများ
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: ဤပို့စ်သည်စာရေးသူ၏ :LICENSE_NAME လိုင်စင်ရထားသည်။
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: မူပိုင်ခွင့်အချို့ကို လက်ဝယ်ထားသည်။
39
+ verbose: >-
40
+ အခြားမှတ်သားထားချက်များမှလွဲ၍ ဤဆိုက်ရှိ ဘလော့ဂ်ပို့စ်များသည် စာရေးသူ၏
41
+ Creative Commons Attribution 4.0 International (CC BY 4.0) အောက်တွင် လိုင်စင်ရထားပါသည်။
42
+
43
+ meta: Powered by :PLATFORM with :THEME theme.
44
+
45
+ not_found:
46
+ statment: ဝမ်းနည်းပါသည်၊ ကျွန်ုပ်တို့သည် အဆိုပါ URL ကို မှားယွင်းစွာ နေရာချထားခြင်း သို့မဟုတ် ၎င်းသည် မရှိသောအရာကို ညွှန်ပြနေပါသည်။
47
+
48
+ notification:
49
+ update_found: အကြောင်းအရာဗားရှင်းအသစ်ကို ရနိုင်ပါပြီ။
50
+ update: အပ်ဒိတ်
51
+
52
+ # ----- Posts related labels -----
53
+
54
+ post:
55
+ written_by: ကရေးသားခဲ့သည်။
56
+ posted: တင်ထားခဲ့သည်။
57
+ updated: မွမ်းမံထားခဲ့သည်။
58
+ words: စကားလုံးများ
59
+ pageview_measure: အမြင်များ
60
+ read_time:
61
+ unit: မိနစ်
62
+ prompt: ဖတ်ပါမည်
63
+ relate_posts: နောက်ထပ်ဖတ်ရန်
64
+ share: မျှဝေရန်
65
+ button:
66
+ next: အသစ်များ
67
+ previous: အဟောင်းများ
68
+ copy_code:
69
+ succeed: ကူးယူလိုက်ပြီ။
70
+ share_link:
71
+ title: လင့်ခ်ကို ကူးယူရန်
72
+ succeed: လင့်ခ်ကို ကူးယူလိုက်ပြီ။
73
+ # pinned prompt of posts list on homepage
74
+ pin_prompt: ချိတ်ထားသည်။
75
+
76
+ # categories page
77
+ categories:
78
+ category_measure: ကဏ္ဍများ
79
+ post_measure: ပို့စ်များ
@@ -0,0 +1,79 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Post
7
+ category: Categoria
8
+ tag: Tag
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Home
14
+ categories: Categorias
15
+ tags: Tags
16
+ archives: Arquivos
17
+ about: Sobre
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: Buscar
22
+ cancel: Cancelar
23
+ no_results: Oops! Nenhum resultado encontrado.
24
+
25
+ panel:
26
+ lastmod: Atualizados recentemente
27
+ trending_tags: Trending Tags
28
+ toc: Conteúdo
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Esta postagem está licenciada sob :LICENSE_NAME pelo autor.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Alguns direitos reservados.
39
+ verbose: >-
40
+ Exceto onde indicado de outra forma, as postagens do blog neste site são licenciadas sob a
41
+ Creative Commons Attribution 4.0 International (CC BY 4.0) License pelo autor.
42
+
43
+ meta: Feito com :PLATFORM usando o tema :THEME.
44
+
45
+ not_found:
46
+ statment: Desculpe, a página não foi encontrada.
47
+
48
+ notification:
49
+ update_found: Uma nova versão do conteúdo está disponível.
50
+ update: atualização
51
+
52
+ # ----- Posts related labels -----
53
+
54
+ post:
55
+ written_by: Por
56
+ posted: Postado em
57
+ updated: Atualizado
58
+ words: palavras
59
+ pageview_measure: visualizações
60
+ read_time:
61
+ unit: min
62
+ prompt: " de leitura"
63
+ relate_posts: Leia também
64
+ share: Compartilhar
65
+ button:
66
+ next: Próximo
67
+ previous: Anterior
68
+ copy_code:
69
+ succeed: Copiado!
70
+ share_link:
71
+ title: Copie o link
72
+ succeed: Link copiado com sucesso!
73
+ # pinned prompt of posts list on homepage
74
+ pin_prompt: Fixado
75
+
76
+ # categories page
77
+ categories:
78
+ category_measure: categorias
79
+ post_measure: posts
@@ -0,0 +1,79 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Публикация
7
+ category: Категория
8
+ tag: Тег
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Домашняя страница
14
+ categories: Категории
15
+ tags: Теги
16
+ archives: Архив
17
+ about: О сайте
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: поиск
22
+ cancel: Отменить
23
+ no_results: Ох! Ничего не найдено.
24
+
25
+ panel:
26
+ lastmod: Недавно обновлено
27
+ trending_tags: Популярные теги
28
+ toc: Содержание
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Публикация защищена лицензией :LICENSE_NAME.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Некоторые права защищены.
39
+ verbose: >-
40
+ Публикации на сайте защищены лицензией Creative Commons Attribution 4.0 International (CC BY 4.0),
41
+ если в тексте публикации не указано иное.
42
+
43
+ meta: Powered by :PLATFORM with :THEME theme.
44
+
45
+ not_found:
46
+ statment: Извините, эта ссылка указывает на ресурс который не существует.
47
+
48
+ notification:
49
+ update_found: Доступна новая версия контента.
50
+ update: Обновлять
51
+
52
+ # ----- Posts related labels -----
53
+
54
+ post:
55
+ written_by: Автор
56
+ posted: Время публикации
57
+ updated: Обновлено
58
+ words: слов
59
+ pageview_measure: просмотров
60
+ read_time:
61
+ unit: минут
62
+ prompt: чтения
63
+ relate_posts: Вам также может быть интересно
64
+ share: Поделиться
65
+ button:
66
+ next: Предыдущая публикация
67
+ previous: Следующая публикация
68
+ copy_code:
69
+ succeed: Скопировано успешно!
70
+ share_link:
71
+ title: Скопировать ссылку
72
+ succeed: Ссылка успешно скопирована!
73
+ # pinned prompt of posts list on homepage
74
+ pin_prompt: Закреплено
75
+
76
+ # categories page
77
+ categories:
78
+ category_measure: категории
79
+ post_measure: публикации
@@ -0,0 +1,79 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Gönderi
7
+ category: Kategori
8
+ tag: Etiket
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Ana Sayfa
14
+ categories: Kategoriler
15
+ tags: Etiketler
16
+ archives: Arşiv
17
+ about: Hakkında
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: Ara...
22
+ cancel: İptal
23
+ no_results: Hop! Öyle bir şey bulamadım.
24
+
25
+ panel:
26
+ lastmod: Yeni Güncellendi
27
+ trending_tags: Yükselen Etiketler
28
+ toc: İçindekiler
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Bu gönderi :LICENSE_NAME lisansı altındadır.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/deed.tr
36
+
37
+ # Displayed in the footer
38
+ brief: Bazı hakları saklıdır.
39
+ verbose: >-
40
+ Aksi belirtilmediği sürece, bu sitedeki gönderiler Creative Commons Atıf 4.0 Uluslararası (CC BY 4.0) Lisansı altındadır.
41
+ Kısaca sayfa linkini de vererek paylaşabilir veya düzenleyip paylaşabilirsin.
42
+
43
+ meta: :PLATFORM ve :THEME teması.
44
+
45
+ not_found:
46
+ statment: Üzgünüz, bu linki yanlış yerleştirdik veya var olmayan bir şeye işaret ediyor.
47
+
48
+ notification:
49
+ update_found: İçeriğin yeni bir sürümü mevcut.
50
+ update: Güncelle
51
+
52
+ # ----- Posts related labels -----
53
+
54
+ post:
55
+ written_by: Yazan
56
+ posted: Gönderilme Tarihi
57
+ updated: Güncellenme Tarihi
58
+ words: sözcük
59
+ pageview_measure: görüntülenme
60
+ read_time:
61
+ unit: dakikada
62
+ prompt: okunabilir
63
+ relate_posts: Benzer Gönderiler
64
+ share: Paylaş
65
+ button:
66
+ next: İleri
67
+ previous: Geri
68
+ copy_code:
69
+ succeed: Kopyalandı.
70
+ share_link:
71
+ title: Linki kopyala
72
+ succeed: Link kopyalandı.
73
+ # pinned prompt of posts list on homepage
74
+ pin_prompt: Sabitlendi
75
+
76
+ # categories page
77
+ categories:
78
+ category_measure: kategori
79
+ post_measure: gönderi
@@ -0,0 +1,79 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Публікація
7
+ category: Категорія
8
+ tag: Тег
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Домашня сторінка
14
+ categories: Категорії
15
+ tags: Теги
16
+ archives: Архів
17
+ about: Про сайт
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: пошук
22
+ cancel: Скасувати
23
+ no_results: Ох! Нічого не знайдено.
24
+
25
+ panel:
26
+ lastmod: Нещодавно оновлено
27
+ trending_tags: Популярні теги
28
+ toc: Зміст
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Публікація захищена ліцензією :LICENSE_NAME.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Деякі права захищено.
39
+ verbose: >-
40
+ Публікації на сайті захищено ліцензією Creative Commons Attribution 4.0 International (CC BY 4.0),
41
+ якщо інше не вказано в тексті.
42
+
43
+ meta: Powered by :PLATFORM with :THEME theme.
44
+
45
+ not_found:
46
+ statment: Вибачте, це посилання вказує на ресурс, що не існує.
47
+
48
+ notification:
49
+ update_found: Доступна нова версія вмісту.
50
+ update: Оновлення
51
+
52
+ # ----- Posts related labels -----
53
+
54
+ post:
55
+ written_by: Автор
56
+ posted: Час публікації
57
+ updated: Оновлено
58
+ words: слів
59
+ pageview_measure: переглядів
60
+ read_time:
61
+ unit: хвилин
62
+ prompt: читання
63
+ relate_posts: Вас також може зацікавити
64
+ share: Поділитися
65
+ button:
66
+ next: Попередня публікація
67
+ previous: Наступна публікація
68
+ copy_code:
69
+ succeed: Успішно скопійовано!
70
+ share_link:
71
+ title: Скопіювати посилання
72
+ succeed: Посилання успішно скопійовано!
73
+ # pinned prompt of posts list on homepage
74
+ pin_prompt: Закріплено
75
+
76
+ # categories page
77
+ categories:
78
+ category_measure: категорії
79
+ post_measure: публікації
@@ -0,0 +1,77 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Bài viết
7
+ category: Danh mục
8
+ tag: Thẻ
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Trang chủ
14
+ categories: Các danh mục
15
+ tags: Các thẻ
16
+ archives: Lưu trữ
17
+ about: Giới thiệu
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: tìm kiếm
22
+ cancel: Hủy
23
+ no_results: Không có kết quả tìm kiếm.
24
+
25
+ panel:
26
+ lastmod: Mới cập nhật
27
+ trending_tags: Các thẻ thịnh hành
28
+ toc: Mục lục
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Bài viết này được cấp phép bởi tác giả theo giấy phép :LICENSE_NAME.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Một số quyền được bảo lưu.
39
+ verbose: >-
40
+ Trừ khi có ghi chú khác, các bài viết đăng trên trang này được cấp phép bởi tác giả theo giấy phép Creative Commons Attribution 4.0 International (CC BY 4.0).
41
+ meta: Trang web này được tạo bởi :PLATFORM với chủ đề :THEME.
42
+
43
+ not_found:
44
+ statment: Xin lỗi, chúng tôi đã đặt nhầm URL hoặc đường dẫn trỏ đến một trang nào đó không tồn tại.
45
+
46
+ notification:
47
+ update_found: Đã có phiên bản mới của nội dung.
48
+ update: Cập nhật
49
+
50
+ # ----- Posts related labels -----
51
+
52
+ post:
53
+ written_by: Viết bởi
54
+ posted: Đăng lúc
55
+ updated: Cập nhật lúc
56
+ words: từ
57
+ pageview_measure: lượt xem
58
+ read_time:
59
+ unit: phút
60
+ prompt: đọc
61
+ relate_posts: Bài viết liên quan
62
+ share: Chia sẻ
63
+ button:
64
+ next: Mới hơn
65
+ previous: Cũ hơn
66
+ copy_code:
67
+ succeed: Đã sao chép!
68
+ share_link:
69
+ title: Sao chép đường dẫn
70
+ succeed: Đã sao chép đường dẫn thành công!
71
+ # pinned prompt of posts list on homepage
72
+ pin_prompt: Bài ghim
73
+
74
+ # categories page
75
+ categories:
76
+ category_measure: danh mục
77
+ post_measure: bài viết
@@ -0,0 +1,85 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: 文章
7
+ category: 分类
8
+ tag: 标签
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: 首页
14
+ categories: 分类
15
+ tags: 标签
16
+ archives: 归档
17
+ about: 关于
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: 搜索
22
+ cancel: 取消
23
+ no_results: 搜索结果为空
24
+
25
+ panel:
26
+ lastmod: 最近更新
27
+ trending_tags: 热门标签
28
+ toc: 文章内容
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: 本文由作者按照 :LICENSE_NAME 进行授权
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: 保留部分权利。
39
+ verbose: >-
40
+ 除非另有说明,本网站上的博客文章均由作者按照知识共享署名 4.0 国际 (CC BY 4.0) 许可协议进行授权。
41
+
42
+ meta: 本站由 :PLATFORM 生成,采用 :THEME 主题。
43
+
44
+ not_found:
45
+ statment: 抱歉,我们放错了该 URL,或者它指向了不存在的内容。
46
+
47
+ notification:
48
+ update_found: 发现新版本的内容。
49
+ update: 更新
50
+
51
+ # ----- Posts related labels -----
52
+
53
+ post:
54
+ written_by: 作者
55
+ posted: 发表于
56
+ updated: 更新于
57
+ words: 字
58
+ pageview_measure: 次浏览
59
+ read_time:
60
+ unit: 分钟
61
+ prompt: 阅读
62
+ relate_posts: 相关文章
63
+ share: 分享
64
+ button:
65
+ next: 下一篇
66
+ previous: 上一篇
67
+ copy_code:
68
+ succeed: 已复制!
69
+ share_link:
70
+ title: 分享链接
71
+ succeed: 链接已复制!
72
+ # pinned prompt of posts list on homepage
73
+ pin_prompt: 顶置
74
+
75
+ # Date time format.
76
+ # See: <http://strftime.net/>, <https://day.js.org/docs/en/display/format>
77
+ df:
78
+ post:
79
+ strftime: '%Y/%m/%d'
80
+ dayjs: 'YYYY/MM/DD'
81
+
82
+ # categories page
83
+ categories:
84
+ category_measure: 个分类
85
+ post_measure: 篇文章
data/_data/share.yml ADDED
@@ -0,0 +1,27 @@
1
+ # Sharing options at the bottom of the post.
2
+ # Icons from <https://fontawesome.com/>
3
+
4
+ platforms:
5
+ -
6
+ type: Twitter
7
+ icon: "fab fa-twitter"
8
+ link: "https://twitter.com/intent/tweet?text=TITLE&url=URL"
9
+ -
10
+ type: Facebook
11
+ icon: "fab fa-facebook-square"
12
+ link: "https://www.facebook.com/sharer/sharer.php?title=TITLE&u=URL"
13
+ -
14
+ type: Telegram
15
+ icon: "fab fa-telegram"
16
+ link: "https://t.me/share/url?url=URL&text=TITLE"
17
+
18
+ # Uncomment below if you need to.
19
+ # -
20
+ # type: Linkedin
21
+ # icon: "fab fa-linkedin"
22
+ # link: "https://www.linkedin.com/sharing/share-offsite/?url=URL"
23
+ #
24
+ # -
25
+ # type: Weibo
26
+ # icon: "fab fa-weibo"
27
+ # link: "http://service.weibo.com/share/share.php?title=TITLE&url=URL"
@@ -0,0 +1,12 @@
1
+ {% comment %} Site static assets origin {% endcomment %}
2
+ {% assign origin = 'cross_origin' %}
3
+
4
+ {% if site.assets.self_host.enabled %}
5
+ {% if site.assets.self_host.env %}
6
+ {% if site.assets.self_host.env == jekyll.environment %}
7
+ {% assign origin = 'self_host' %}
8
+ {% endif %}
9
+ {% else %}
10
+ {% assign origin = 'self_host' %}
11
+ {% endif %}
12
+ {% endif %}
@@ -0,0 +1,54 @@
1
+ <!--
2
+ The Disqus lazy loading.
3
+ -->
4
+ <div id="disqus_thread" class="pt-2 pb-2">
5
+ <p class="text-center text-muted small">
6
+ Comments powered by <a href="https://disqus.com/">Disqus</a>.
7
+ </p>
8
+ </div>
9
+
10
+ <script type="text/javascript">
11
+
12
+ var disqus_config = function () {
13
+ this.page.url = '{{ page.url | absolute_url }}';
14
+ this.page.identifier = '{{ page.url }}';
15
+ };
16
+
17
+ /* Lazy loading */
18
+ var disqus_observer = new IntersectionObserver(function (entries) {
19
+ if(entries[0].isIntersecting) {
20
+ (function () {
21
+ var d = document, s = d.createElement('script');
22
+ s.src = 'https://{{ site.comments.disqus.shortname }}.disqus.com/embed.js';
23
+ s.setAttribute('data-timestamp', +new Date());
24
+ (d.head || d.body).appendChild(s);
25
+ })();
26
+
27
+ disqus_observer.disconnect();
28
+ }
29
+ }, { threshold: [0] });
30
+
31
+ disqus_observer.observe(document.querySelector('#disqus_thread'));
32
+
33
+ /* Auto switch theme */
34
+ function reloadDisqus() {
35
+ if (event.source === window && event.data &&
36
+ event.data.direction === ModeToggle.ID) {
37
+ /* Disqus hasn't been loaded */
38
+ if (typeof DISQUS === "undefined") {
39
+ return;
40
+ }
41
+
42
+ if (document.readyState == 'complete') {
43
+ DISQUS.reset({ reload: true, config: disqus_config });
44
+ }
45
+ }
46
+ }
47
+
48
+ const modeToggle = document.querySelector(".mode-toggle");
49
+
50
+ if (typeof modeToggle !== "undefined") {
51
+ window.addEventListener("message", reloadDisqus);
52
+ }
53
+
54
+ </script>