jekyll-theme-chirpy 5.0.2 → 5.1.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 +4 -4
- data/README.md +7 -7
- data/_config.yml +35 -13
- data/_data/assets/cross_origin.yml +62 -0
- data/_data/assets/self_host.yml +51 -0
- data/_data/locales/en.yml +1 -14
- data/_data/locales/id-ID.yml +0 -13
- data/_data/locales/ko-KR.yml +0 -13
- data/_data/locales/my-MM.yml +78 -0
- data/_data/locales/ru-RU.yml +78 -0
- data/_data/locales/uk-UA.yml +78 -0
- data/_data/locales/zh-CN.yml +0 -13
- data/_data/share.yml +1 -1
- data/_includes/assets-origin.html +12 -0
- data/_includes/comments/giscus.html +56 -0
- data/_includes/comments/utterances.html +2 -2
- data/_includes/head.html +35 -20
- data/_includes/js-selector.html +42 -10
- data/_includes/jsdelivr-combine.html +32 -0
- data/_includes/mermaid.html +3 -3
- data/_includes/mode-toggle.html +4 -3
- data/_includes/post-sharing.html +2 -2
- data/_includes/refactor-content.html +53 -6
- data/_includes/search-loader.html +1 -1
- data/_includes/sidebar.html +6 -6
- data/_includes/timeago.html +6 -17
- data/_includes/toc.html +1 -1
- data/_includes/topbar.html +2 -3
- data/_layouts/archives.html +5 -7
- data/_layouts/category.html +3 -5
- data/_layouts/default.html +4 -2
- data/_layouts/home.html +2 -2
- data/_layouts/page.html +3 -1
- data/_layouts/tag.html +3 -5
- data/_sass/addon/commons.scss +139 -132
- data/_sass/addon/module.scss +33 -17
- data/_sass/addon/syntax.scss +38 -25
- data/_sass/addon/variables.scss +6 -6
- data/_sass/colors/dark-syntax.scss +1 -0
- data/_sass/colors/dark-typography.scss +10 -1
- data/_sass/colors/light-syntax.scss +6 -1
- data/_sass/colors/light-typography.scss +14 -1
- data/_sass/jekyll-theme-chirpy.scss +1 -1
- data/_sass/layout/post.scss +1 -1
- data/_tabs/about.md +2 -2
- data/assets/404.html +0 -2
- data/assets/js/data/search.json +1 -0
- data/assets/js/data/swcache.js +11 -20
- data/assets/js/dist/categories.min.js +2 -2
- data/assets/js/dist/commons.min.js +2 -2
- data/assets/js/dist/home.min.js +2 -2
- data/assets/js/dist/misc.min.js +6 -0
- data/assets/js/dist/page.min.js +2 -2
- data/assets/js/dist/post.min.js +2 -2
- data/assets/js/dist/pvreport.min.js +1 -1
- metadata +11 -4
- data/_includes/css-selector.html +0 -15
- data/_includes/no-zero-date.html +0 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 043dfe3b5591aeeb77214df1a3ad42b1de715f1e9c9662ed00503ab7ff3ae72b
|
|
4
|
+
data.tar.gz: d665212495c2bc98abb48341a2d3e92f01caced260d14c0ef90286d8daffc2e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b1f3a3f2798d51feb43c504b1d6d1da6d1a83e63daca6f64c60cb6beafef94cb11cc2643d412b830e6418a74141983b369482ad7a323f2fe17e809e96df6bb1
|
|
7
|
+
data.tar.gz: a9934d55bad3269de239e306096af0e6d744d064e3967e7e7d2c5357465e2b06371dda86f6caf022f66643521dd6e3fc84e51baf100dcfef7dff55d018621b99
|
data/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
[**Live Demo →**](https://cotes2020.github.io/chirpy-demo)
|
|
14
14
|
|
|
15
|
-
[](https://cotes2020.github.io/chirpy-demo)
|
|
16
16
|
|
|
17
17
|
</div>
|
|
18
18
|
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
- Syntax Highlighting
|
|
29
29
|
- Mathematical Expressions
|
|
30
30
|
- Mermaid Diagram & Flowchart
|
|
31
|
-
- Disqus/Utterances Comments
|
|
31
|
+
- Disqus/Utterances/Giscus Comments
|
|
32
32
|
- Search
|
|
33
33
|
- Atom Feeds
|
|
34
34
|
- Google Analytics
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
## Quick Start
|
|
40
40
|
|
|
41
|
-
Before starting, please follow the instructions in the [Jekyll Docs](https://jekyllrb.com/docs/installation/) to complete the installation of `Ruby`, `RubyGems`, `Jekyll`, and `Bundler`.
|
|
41
|
+
Before starting, please follow the instructions in the [Jekyll Docs](https://jekyllrb.com/docs/installation/) to complete the installation of `Ruby`, `RubyGems`, `Jekyll`, and `Bundler`. In addition, [Git](https://git-scm.com/) is also required to be installed.
|
|
42
42
|
|
|
43
43
|
### Step 1. Creating a New Site
|
|
44
44
|
|
|
@@ -69,11 +69,11 @@ $ docker run -it --rm \
|
|
|
69
69
|
jekyll serve
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
After a while,
|
|
72
|
+
After a while, navigate to the site at <http://localhost:4000>.
|
|
73
73
|
|
|
74
74
|
## Documentation
|
|
75
75
|
|
|
76
|
-
For more details on usage, please refer to the tutorial on the [demo website](https://cotes2020.github.io/chirpy-demo/)
|
|
76
|
+
For more details on usage, please refer to the tutorial on the [demo website](https://cotes2020.github.io/chirpy-demo/) / [wiki](https://github.com/cotes2020/jekyll-theme-chirpy/wiki). Note that the tutorial is based on the [latest tag](https://github.com/cotes2020/jekyll-theme-chirpy/tags), and the features of the default branch are usually ahead of the documentation.
|
|
77
77
|
|
|
78
78
|
## Contributing
|
|
79
79
|
|
|
@@ -83,9 +83,9 @@ Welcome to report bugs, improve code quality or submit a new feature. For more i
|
|
|
83
83
|
|
|
84
84
|
This theme is mainly built with [Jekyll](https://jekyllrb.com/) ecosystem, [Bootstrap](https://getbootstrap.com/), [Font Awesome](https://fontawesome.com/) and some other wonderful tools (their copyright information can be found in the relevant files). The avatar and favicon design come from [Clipart Max](https://www.clipartmax.com/middle/m2i8b1m2K9Z5m2K9_ant-clipart-childrens-ant-cute/).
|
|
85
85
|
|
|
86
|
-
:tada: Thanks to all the volunteers who contributed to this project, their GitHub IDs are on [this list](https://github.com/cotes2020/jekyll-theme-chirpy/graphs/contributors). Also, I won't forget those guys who submitted the issues or unmerged PR because they reported bugs, shared ideas or inspired me to write more readable documentation.
|
|
86
|
+
:tada: Thanks to all the volunteers who contributed to this project, their GitHub IDs are on [this list](https://github.com/cotes2020/jekyll-theme-chirpy/graphs/contributors). Also, I won't forget those guys who submitted the issues or unmerged PR because they reported bugs, shared ideas, or inspired me to write more readable documentation.
|
|
87
87
|
|
|
88
|
-
Last but not least, thank [JetBrains][jb] for providing the
|
|
88
|
+
Last but not least, thank [JetBrains][jb] for providing the OSS development license.
|
|
89
89
|
|
|
90
90
|
## Sponsoring
|
|
91
91
|
|
data/_config.yml
CHANGED
|
@@ -12,6 +12,9 @@ baseurl: ''
|
|
|
12
12
|
# otherwise, the layout language will use the default value of 'en'.
|
|
13
13
|
lang: en
|
|
14
14
|
|
|
15
|
+
# Additional parameters for datetime localization, optional. › https://github.com/iamkun/dayjs/tree/dev/src/locale
|
|
16
|
+
prefer_datetime_locale:
|
|
17
|
+
|
|
15
18
|
# Change to your timezone › http://www.timezoneconverter.com/cgi-bin/findzone/findzone
|
|
16
19
|
timezone: Asia/Shanghai
|
|
17
20
|
|
|
@@ -23,9 +26,7 @@ title: Chirpy # the main title
|
|
|
23
26
|
tagline: A text-focused Jekyll theme # it will display as the sub-title
|
|
24
27
|
|
|
25
28
|
description: >- # used by seo meta and the atom feed
|
|
26
|
-
A minimal,
|
|
27
|
-
bootstrap Jekyll theme with responsive web design
|
|
28
|
-
and focuses on text presentation.
|
|
29
|
+
A minimal, responsive, and powerful Jekyll theme for presenting professional writing.
|
|
29
30
|
|
|
30
31
|
# fill in the protocol & hostname for your site, e.g., 'https://username.github.io'
|
|
31
32
|
url: ''
|
|
@@ -49,13 +50,13 @@ social:
|
|
|
49
50
|
# - https://www.facebook.com/username
|
|
50
51
|
# - https://www.linkedin.com/in/username
|
|
51
52
|
|
|
52
|
-
google_site_verification:
|
|
53
|
+
google_site_verification: # fill in to your verification string
|
|
53
54
|
|
|
54
55
|
# ↑ --------------------------
|
|
55
|
-
|
|
56
|
+
# The end of `jekyll-seo-tag` settings
|
|
56
57
|
|
|
57
58
|
google_analytics:
|
|
58
|
-
id:
|
|
59
|
+
id: # fill in your Google Analytics ID
|
|
59
60
|
# Google Analytics pageviews report settings
|
|
60
61
|
pv:
|
|
61
62
|
proxy_endpoint: # fill in the Google Analytics superProxy endpoint of Google App Engine
|
|
@@ -96,6 +97,23 @@ comments:
|
|
|
96
97
|
utterances:
|
|
97
98
|
repo: # <gh-username>/<repo>
|
|
98
99
|
issue_term: # < url | pathname | title | ...>
|
|
100
|
+
# Giscus options › https://giscus.app
|
|
101
|
+
giscus:
|
|
102
|
+
repo: # <gh-username>/<repo>
|
|
103
|
+
repo_id:
|
|
104
|
+
category:
|
|
105
|
+
category_id:
|
|
106
|
+
mapping: # optional, default to 'pathname'
|
|
107
|
+
input_position: # optional, default to 'bottom'
|
|
108
|
+
lang: # optional, default to the value of `site.lang`
|
|
109
|
+
|
|
110
|
+
# Self-hosted static assets, optional › https://github.com/cotes2020/chirpy-static-assets
|
|
111
|
+
assets:
|
|
112
|
+
self_host:
|
|
113
|
+
enabled: # boolean, keep empty means false
|
|
114
|
+
# specify the Jekyll environment, empty means both
|
|
115
|
+
# only works if `assets.self_host.enabled` is 'true'
|
|
116
|
+
env: # [development|production]
|
|
99
117
|
|
|
100
118
|
paginate: 10
|
|
101
119
|
|
|
@@ -118,8 +136,7 @@ collections:
|
|
|
118
136
|
sort_by: order
|
|
119
137
|
|
|
120
138
|
defaults:
|
|
121
|
-
-
|
|
122
|
-
scope:
|
|
139
|
+
- scope:
|
|
123
140
|
path: '' # An empty string here means all files in the project
|
|
124
141
|
type: posts
|
|
125
142
|
values:
|
|
@@ -129,18 +146,24 @@ defaults:
|
|
|
129
146
|
# DO NOT modify the following parameter unless you are confident enough
|
|
130
147
|
# to update the code of all other post links in this project.
|
|
131
148
|
permalink: /posts/:title/
|
|
132
|
-
-
|
|
133
|
-
scope:
|
|
149
|
+
- scope:
|
|
134
150
|
path: _drafts
|
|
135
151
|
values:
|
|
136
152
|
comments: false
|
|
137
|
-
-
|
|
138
|
-
scope:
|
|
153
|
+
- scope:
|
|
139
154
|
path: ''
|
|
140
155
|
type: tabs # see `site.collections`
|
|
141
156
|
values:
|
|
142
157
|
layout: page
|
|
143
158
|
permalink: /:title/
|
|
159
|
+
- scope:
|
|
160
|
+
path: assets/img/favicons
|
|
161
|
+
values:
|
|
162
|
+
swcache: true
|
|
163
|
+
- scope:
|
|
164
|
+
path: assets/js/dist
|
|
165
|
+
values:
|
|
166
|
+
swcache: true
|
|
144
167
|
|
|
145
168
|
sass:
|
|
146
169
|
style: compressed
|
|
@@ -158,7 +181,6 @@ exclude:
|
|
|
158
181
|
- '*.gem'
|
|
159
182
|
- '*.gemspec'
|
|
160
183
|
- tools
|
|
161
|
-
- docs
|
|
162
184
|
- README.md
|
|
163
185
|
- LICENSE
|
|
164
186
|
- gulpfile.js
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# CDNs
|
|
2
|
+
|
|
3
|
+
cdns:
|
|
4
|
+
# Google Fonts
|
|
5
|
+
- url: https://fonts.googleapis.com
|
|
6
|
+
- url: https://fonts.gstatic.com
|
|
7
|
+
args: crossorigin
|
|
8
|
+
- url: https://fonts.googleapis.com
|
|
9
|
+
# jsDelivr CDN
|
|
10
|
+
- url: https://cdn.jsdelivr.net
|
|
11
|
+
|
|
12
|
+
# fonts
|
|
13
|
+
|
|
14
|
+
webfonts: https://fonts.googleapis.com/css2?family=Lato&family=Source+Sans+Pro:wght@400;600;700;900&display=swap
|
|
15
|
+
|
|
16
|
+
# Libraries
|
|
17
|
+
|
|
18
|
+
jquery:
|
|
19
|
+
js: https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js
|
|
20
|
+
|
|
21
|
+
bootstrap:
|
|
22
|
+
css: https://cdn.jsdelivr.net/npm/bootstrap@4/dist/css/bootstrap.min.css
|
|
23
|
+
js: https://cdn.jsdelivr.net/npm/bootstrap@4/dist/js/bootstrap.bundle.min.js
|
|
24
|
+
|
|
25
|
+
bootstrap-toc:
|
|
26
|
+
css: https://cdn.jsdelivr.net/gh/afeld/bootstrap-toc@1.0.1/dist/bootstrap-toc.min.css
|
|
27
|
+
js: https://cdn.jsdelivr.net/gh/afeld/bootstrap-toc@1.0.1/dist/bootstrap-toc.min.js
|
|
28
|
+
|
|
29
|
+
fontawesome:
|
|
30
|
+
css: https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.11.2/css/all.min.css
|
|
31
|
+
|
|
32
|
+
search:
|
|
33
|
+
js: https://cdn.jsdelivr.net/npm/simple-jekyll-search@1.10.0/dest/simple-jekyll-search.min.js
|
|
34
|
+
|
|
35
|
+
mermaid:
|
|
36
|
+
js: https://cdn.jsdelivr.net/npm/mermaid@8/dist/mermaid.min.js
|
|
37
|
+
|
|
38
|
+
dayjs:
|
|
39
|
+
js:
|
|
40
|
+
common: https://cdn.jsdelivr.net/npm/dayjs@1/dayjs.min.js
|
|
41
|
+
locale: https://cdn.jsdelivr.net/npm/dayjs@1/locale/:LOCALE.min.js
|
|
42
|
+
relativeTime: https://cdn.jsdelivr.net/npm/dayjs@1/plugin/relativeTime.min.js
|
|
43
|
+
localizedFormat: https://cdn.jsdelivr.net/npm/dayjs@1/plugin/localizedFormat.min.js
|
|
44
|
+
|
|
45
|
+
countup:
|
|
46
|
+
js: https://cdn.jsdelivr.net/npm/countup.js@1.9.3/dist/countUp.min.js
|
|
47
|
+
|
|
48
|
+
magnific-popup:
|
|
49
|
+
css: https://cdn.jsdelivr.net/npm/magnific-popup@1/dist/magnific-popup.min.css
|
|
50
|
+
js: https://cdn.jsdelivr.net/npm/magnific-popup@1/dist/jquery.magnific-popup.min.js
|
|
51
|
+
|
|
52
|
+
lozad:
|
|
53
|
+
js: https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js
|
|
54
|
+
|
|
55
|
+
clipboard:
|
|
56
|
+
js: https://cdn.jsdelivr.net/npm/clipboard@2/dist/clipboard.min.js
|
|
57
|
+
|
|
58
|
+
polyfill:
|
|
59
|
+
js: https://polyfill.io/v3/polyfill.min.js?features=es6
|
|
60
|
+
|
|
61
|
+
mathjax:
|
|
62
|
+
js: https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# fonts
|
|
2
|
+
|
|
3
|
+
webfonts: /assets/lib/fonts/main.css
|
|
4
|
+
|
|
5
|
+
# Libraries
|
|
6
|
+
|
|
7
|
+
jquery:
|
|
8
|
+
js: /assets/lib/jquery-3.6.0/jquery.min.js
|
|
9
|
+
|
|
10
|
+
bootstrap:
|
|
11
|
+
css: /assets/lib/bootstrap-4.6.1/bootstrap.min.css
|
|
12
|
+
js: /assets/lib/bootstrap-4.6.1/bootstrap.bundle.min.js
|
|
13
|
+
|
|
14
|
+
bootstrap-toc:
|
|
15
|
+
css: /assets/lib/bootstrap-toc-1.0.1/bootstrap-toc.min.css
|
|
16
|
+
js: /assets/lib/bootstrap-toc-1.0.1/bootstrap-toc.min.js
|
|
17
|
+
|
|
18
|
+
fontawesome:
|
|
19
|
+
css: /assets/lib/fontawesome-free-5.15.4/css/all.min.css
|
|
20
|
+
|
|
21
|
+
search:
|
|
22
|
+
js: /assets/lib/simple-jekyll-search-1.10.0/simple-jekyll-search.min.js
|
|
23
|
+
|
|
24
|
+
mermaid:
|
|
25
|
+
js: /assets/lib/mermaid-8.13.10/mermaid.min.js
|
|
26
|
+
|
|
27
|
+
dayjs:
|
|
28
|
+
js:
|
|
29
|
+
common: /assets/lib/dayjs-1.10.7/dayjs.min.js
|
|
30
|
+
locale: /assets/lib/dayjs-1.10.7/locale/en.min.js
|
|
31
|
+
relativeTime: /assets/lib/dayjs-1.10.7/plugin/relativeTime.min.js
|
|
32
|
+
localizedFormat: /assets/lib/dayjs-1.10.7/plugin/localizedFormat.min.js
|
|
33
|
+
|
|
34
|
+
countup:
|
|
35
|
+
js: /assets/lib/countup.js-1.9.3/countUp.min.js
|
|
36
|
+
|
|
37
|
+
magnific-popup:
|
|
38
|
+
css: /assets/lib/magnific-popup-1.1.0/magnific-popup.css
|
|
39
|
+
js: /assets/lib/magnific-popup-1.1.0/jquery.magnific-popup.min.js
|
|
40
|
+
|
|
41
|
+
lozad:
|
|
42
|
+
js: /assets/lib/lozad-1.16.0/lozad.min.js
|
|
43
|
+
|
|
44
|
+
clipboard:
|
|
45
|
+
js: /assets/lib/clipboard-2.0.9/clipboard.min.js
|
|
46
|
+
|
|
47
|
+
polyfill:
|
|
48
|
+
js: /assets/lib/polyfill-v3-es6/polyfill.min.js
|
|
49
|
+
|
|
50
|
+
mathjax:
|
|
51
|
+
js: /assets/lib/mathjax-3.2.0/tex-chtml.js
|
data/_data/locales/en.yml
CHANGED
|
@@ -23,18 +23,10 @@ search:
|
|
|
23
23
|
no_results: Oops! No result founds.
|
|
24
24
|
|
|
25
25
|
panel:
|
|
26
|
-
lastmod:
|
|
26
|
+
lastmod: Recently Updated
|
|
27
27
|
trending_tags: Trending Tags
|
|
28
28
|
toc: Contents
|
|
29
29
|
|
|
30
|
-
# The liquid date format › http://strftime.net/
|
|
31
|
-
date_format:
|
|
32
|
-
tooltip: '%a, %b %e, %Y, %l:%M %p %z'
|
|
33
|
-
post:
|
|
34
|
-
long: '%b %e, %Y'
|
|
35
|
-
short: '%b %e'
|
|
36
|
-
archive_month: '%b'
|
|
37
|
-
|
|
38
30
|
copyright:
|
|
39
31
|
# Shown at the bottom of the post
|
|
40
32
|
license:
|
|
@@ -62,11 +54,6 @@ post:
|
|
|
62
54
|
written_by: By
|
|
63
55
|
posted: Posted
|
|
64
56
|
updated: Updated
|
|
65
|
-
timeago:
|
|
66
|
-
day: days ago
|
|
67
|
-
hour: hours ago
|
|
68
|
-
minute: minutes ago
|
|
69
|
-
just_now: just now
|
|
70
57
|
words: words
|
|
71
58
|
pageview_measure: views
|
|
72
59
|
read_time:
|
data/_data/locales/id-ID.yml
CHANGED
|
@@ -27,14 +27,6 @@ panel:
|
|
|
27
27
|
trending_tags: Tagar Terpopuler
|
|
28
28
|
toc: Konten
|
|
29
29
|
|
|
30
|
-
# The liquid date format › http://strftime.net/
|
|
31
|
-
date_format:
|
|
32
|
-
tooltip: "%a, %e %b, %Y, %l:%M %p"
|
|
33
|
-
post:
|
|
34
|
-
long: "%e %b, %Y"
|
|
35
|
-
short: "%e %b"
|
|
36
|
-
archive_month: "%b"
|
|
37
|
-
|
|
38
30
|
copyright:
|
|
39
31
|
# Shown at the bottom of the post
|
|
40
32
|
license:
|
|
@@ -62,11 +54,6 @@ post:
|
|
|
62
54
|
written_by: Oleh
|
|
63
55
|
posted: Diterbitkan
|
|
64
56
|
updated: Diperbarui
|
|
65
|
-
timeago:
|
|
66
|
-
day: hari yang lalu
|
|
67
|
-
hour: jam yang lalu
|
|
68
|
-
minute: menit yang lalu
|
|
69
|
-
just_now: baru saja
|
|
70
57
|
words: kata
|
|
71
58
|
pageview_measure: dilihat
|
|
72
59
|
read_time:
|
data/_data/locales/ko-KR.yml
CHANGED
|
@@ -27,14 +27,6 @@ panel:
|
|
|
27
27
|
trending_tags: 인기 태그
|
|
28
28
|
toc: 바로가기
|
|
29
29
|
|
|
30
|
-
# The liquid date format › http://strftime.net/
|
|
31
|
-
date_format:
|
|
32
|
-
tooltip: '%F, %R %z'
|
|
33
|
-
post:
|
|
34
|
-
long: '%Y년 %m월 %d일'
|
|
35
|
-
short: '%m월 %d일'
|
|
36
|
-
archive_month: '%b월'
|
|
37
|
-
|
|
38
30
|
copyright:
|
|
39
31
|
# Shown at the bottom of the post
|
|
40
32
|
license:
|
|
@@ -62,11 +54,6 @@ post:
|
|
|
62
54
|
written_by: By
|
|
63
55
|
posted: 게시
|
|
64
56
|
updated: 업데이트
|
|
65
|
-
timeago:
|
|
66
|
-
day: 일 전
|
|
67
|
-
hour: 시간 전
|
|
68
|
-
minute: 분 전
|
|
69
|
-
just_now: 방금
|
|
70
57
|
words: 단어
|
|
71
58
|
pageview_measure: 조회
|
|
72
59
|
read_time:
|
|
@@ -0,0 +1,78 @@
|
|
|
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
|
+
hint_template: ၎င်းကို ထပ်မံရှာဖွေရန် :HEAD_BAK , သို့မဟုတ် :ARCHIVES_PAGE တွင်ရှာပါ။
|
|
48
|
+
head_back: အဓိကစာမျက်နှာသို့ပြန်သွားပါ။
|
|
49
|
+
archives_page: မှတ်တမ်းတိုက် စာမျက်နှာ။
|
|
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
|
+
# categories page
|
|
76
|
+
categories:
|
|
77
|
+
category_measure: ကဏ္ဍများ
|
|
78
|
+
post_measure: ပို့စ်များ
|
|
@@ -0,0 +1,78 @@
|
|
|
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
|
+
hint_template: :HEAD_BAK чтобы снова осуществить поиск, или поищите :ARCHIVES_PAGE.
|
|
48
|
+
head_back: Вернитесь на домашнюю страницу
|
|
49
|
+
archives_page: архиве
|
|
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
|
+
# categories page
|
|
76
|
+
categories:
|
|
77
|
+
category_measure: категории
|
|
78
|
+
post_measure: публикации
|
|
@@ -0,0 +1,78 @@
|
|
|
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
|
+
hint_template: :HEAD_BAK аби здійснити пошук, або пошукайте в :ARCHIVES_PAGE.
|
|
48
|
+
head_back: Поверніться на домашню сторінку
|
|
49
|
+
archives_page: архіві
|
|
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
|
+
# categories page
|
|
76
|
+
categories:
|
|
77
|
+
category_measure: категорії
|
|
78
|
+
post_measure: публікації
|
data/_data/locales/zh-CN.yml
CHANGED
|
@@ -27,14 +27,6 @@ panel:
|
|
|
27
27
|
trending_tags: 热门标签
|
|
28
28
|
toc: 文章内容
|
|
29
29
|
|
|
30
|
-
# The liquid date format › http://strftime.net/
|
|
31
|
-
date_format:
|
|
32
|
-
tooltip: '%F, %R %z'
|
|
33
|
-
post:
|
|
34
|
-
long: '%F'
|
|
35
|
-
short: '%m-%d'
|
|
36
|
-
archive_month: '%m月'
|
|
37
|
-
|
|
38
30
|
copyright:
|
|
39
31
|
# Shown at the bottom of the post
|
|
40
32
|
license:
|
|
@@ -61,11 +53,6 @@ post:
|
|
|
61
53
|
written_by: 作者
|
|
62
54
|
posted: 发表于
|
|
63
55
|
updated: 更新于
|
|
64
|
-
timeago:
|
|
65
|
-
day: 天前
|
|
66
|
-
hour: 小时前
|
|
67
|
-
minute: 分钟前
|
|
68
|
-
just_now: 刚刚
|
|
69
56
|
words: 字
|
|
70
57
|
pageview_measure: 次浏览
|
|
71
58
|
read_time:
|
data/_data/share.yml
CHANGED
|
@@ -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 %}
|