jekyll-whiteglass 1.8.1 → 1.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +28 -0
- data/README.md +29 -6
- data/_config.yml +74 -0
- data/_data/i18n.yml +54 -0
- data/_data/navigation.yml +9 -0
- data/_includes/custom_comments_provider.html +1 -1
- data/_includes/date.html +32 -0
- data/_includes/fonts.html +1 -1
- data/_includes/i18n.html +17 -0
- data/_includes/pagination.html +2 -2
- data/_layouts/archive.html +2 -2
- data/_layouts/category_archives.html +4 -1
- data/_layouts/home.html +2 -2
- data/_layouts/post.html +1 -1
- data/_sass/whiteglass.scss +3 -3
- data/_sass/whiteglass/_base.scss +5 -1
- data/_sass/whiteglass/_layout.scss +1 -1
- data/_sass/whiteglass/_syntax-highlighting.scss +24 -24
- data/assets/main.scss +3 -3
- metadata +19 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58bd4ee76f679654286e38b0232040bc1ab3734aae3dbdb58daeeff9f55e3be0
|
4
|
+
data.tar.gz: b5cefe5c7c777ebbecbdeb5ea615c11990d2267e7869a7105a394461afb69616
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79d6985d177a3435b386a7d7a08c5f8f68f91e7ad60c5dbd395b679c61956aa7c134551688a5c8bbac5bf2984f80671c3d68259aeee3c9fce343b18b2fe081ec
|
7
|
+
data.tar.gz: 04e13744ab703bd306f2ba7ead7c29d9e97182bac7e994092de4bc2d5554111302c2f9eb4291d995391b759b31c1196748832967faa619c096be6eb6f77cdbaf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,33 @@
|
|
1
1
|
# ChangeLog
|
2
2
|
|
3
|
+
## 1.10.1 (2020-08-31)
|
4
|
+
|
5
|
+
- Fix i18n.yml for de-AT (#39)
|
6
|
+
|
7
|
+
## 1.10.0 (2020-08-24)
|
8
|
+
|
9
|
+
- URL-encode the ampersand in the URL (#32)
|
10
|
+
- Internationalization of whiteglass (#11)
|
11
|
+
- Added German translation (#11)
|
12
|
+
- Add Korean translation
|
13
|
+
|
14
|
+
## 1.9.1 (2019-08-26)
|
15
|
+
|
16
|
+
- Restore colors of code in blockquotes
|
17
|
+
- Fix insufficient contrast of .post-continue
|
18
|
+
|
19
|
+
## 1.9.0 (2019-08-26)
|
20
|
+
|
21
|
+
- Adjust $grey-color to conform to WCAG 2.0 AA (#26)
|
22
|
+
- Support Jekyll 4.0
|
23
|
+
- Fix insufficient contrast in syntax highlighting (#26)
|
24
|
+
- Validate HTML, CSS, SVG files with html5validator
|
25
|
+
- Test accessibility of site with pa11y-ci
|
26
|
+
|
27
|
+
## 1.8.2 (2019-05-25)
|
28
|
+
|
29
|
+
- Use font-display: swap for Google Fonts
|
30
|
+
|
3
31
|
## 1.8.1 (2019-05-15)
|
4
32
|
|
5
33
|
- DNS prefetch for Google Fonts
|
data/README.md
CHANGED
@@ -35,6 +35,17 @@ gem install jekyll-whiteglass
|
|
35
35
|
|
36
36
|
## Quick Start
|
37
37
|
|
38
|
+
1. Go to [yous/whiteglass-template](https://github.com/yous/whiteglass-template).
|
39
|
+
2. Click "Use this template" button, and then create a repository.
|
40
|
+
3. Generate a personal access token on <https://github.com/settings/tokens>,
|
41
|
+
select `public_repo` or `repo` depending on your repository.
|
42
|
+
4. In the settings page of your repository, go to Secrets tab
|
43
|
+
(`https://github.com/<user>/<repo>/settings/secrets`) and add a secret
|
44
|
+
`JEKYLL_PAT` with the value of token you got from 3.
|
45
|
+
5. Push some content, then GitHub Actions will generate the site.
|
46
|
+
|
47
|
+
## Manual Setup
|
48
|
+
|
38
49
|
1. Generate a new Jekyll blog:
|
39
50
|
|
40
51
|
``` sh
|
@@ -75,14 +86,16 @@ gem install jekyll-whiteglass
|
|
75
86
|
[`index.html`](https://github.com/yous/whiteglass/blob/master/index.html),
|
76
87
|
[`about.md`](https://github.com/yous/whiteglass/blob/master/about.md),
|
77
88
|
[`archives.md`](https://github.com/yous/whiteglass/blob/master/archives.md),
|
78
|
-
[`feed.xml`](https://github.com/yous/whiteglass/blob/master/feed.xml),
|
79
|
-
[`
|
89
|
+
[`feed.xml`](https://github.com/yous/whiteglass/blob/master/feed.xml),
|
90
|
+
[`robots.txt`](https://github.com/yous/whiteglass/blob/master/robots.txt),
|
91
|
+
[`_data/i18n.yml`](https://github.com/yous/whiteglass/blob/master/_data/i18n.yml),
|
92
|
+
and [`_data/navigation.yml`](https://github.com/yous/whiteglass/blob/master/_data/navigation.yml)
|
80
93
|
from the theme:
|
81
94
|
|
82
95
|
``` sh
|
83
96
|
rm index.md
|
84
|
-
curl -L -O "https://github.com/yous/whiteglass/raw/master/{index.html,about.md,archives.md,feed.xml}"
|
85
|
-
curl -L --create-dirs -o _data
|
97
|
+
curl -L -O "https://github.com/yous/whiteglass/raw/master/{index.html,about.md,archives.md,feed.xml,robots.txt}"
|
98
|
+
curl -L --create-dirs -o _data/#1 "https://github.com/yous/whiteglass/raw/master/_data/{navigation.yml,i18n.yml}"
|
86
99
|
```
|
87
100
|
|
88
101
|
5. Install gems and you're good to go! The blog will be available on
|
@@ -93,6 +106,14 @@ gem install jekyll-whiteglass
|
|
93
106
|
bundle exec jekyll serve
|
94
107
|
```
|
95
108
|
|
109
|
+
## Upgrading
|
110
|
+
|
111
|
+
### From Versions < 1.9.1
|
112
|
+
|
113
|
+
Copy
|
114
|
+
[`_data/i18n.yml`](https://github.com/yous/whiteglass/blob/master/_data/i18n.yml)
|
115
|
+
from the theme.
|
116
|
+
|
96
117
|
## Deployment to GitHub Pages using Travis CI
|
97
118
|
|
98
119
|
This theme uses [jekyll-archives](https://github.com/jekyll/jekyll-archives) gem
|
@@ -100,8 +121,8 @@ which is [not supported by GitHub Pages](https://help.github.com/articles/config
|
|
100
121
|
If you want to use full features like categories and tags, I recommend you to
|
101
122
|
use Travis CI or other CI services.
|
102
123
|
|
103
|
-
To deploy using Travis CI, first copy the [`.travis.yml`](.travis.yml)
|
104
|
-
repository. You can change `target-branch` (`gh-pages` by default) and
|
124
|
+
To deploy using Travis CI, first copy the [`.travis.yml`](https://github.com/yous/whiteglass/blob/master/.travis.yml)
|
125
|
+
of this repository. You can change `target-branch` (`gh-pages` by default) and
|
105
126
|
`on.branch` (`master` by default) as you want. If you want further
|
106
127
|
customization, see [Travis CI's documentation page](https://docs.travis-ci.com/user/deployment/pages/).
|
107
128
|
|
@@ -168,6 +189,8 @@ title: "안녕하세요"
|
|
168
189
|
lang: ko
|
169
190
|
```
|
170
191
|
|
192
|
+
The date format and other fixed strings are translated using the `_data/i18n.yml` file. If your language is not yet included, feel free to open a [pull request](https://github.com/yous/whiteglass/pulls).
|
193
|
+
|
171
194
|
### Description
|
172
195
|
|
173
196
|
`site.description` describes the site. This is mainly used in meta descriptions
|
data/_config.yml
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Welcome to Jekyll!
|
2
|
+
#
|
3
|
+
# This config file is meant for settings that affect your whole blog, values
|
4
|
+
# which you are expected to set up once and rarely edit after that. If you find
|
5
|
+
# yourself editing this file very often, consider using Jekyll's data files
|
6
|
+
# feature for the data you need to update frequently.
|
7
|
+
#
|
8
|
+
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
9
|
+
# 'jekyll serve'. If you change this file, please restart the server process.
|
10
|
+
|
11
|
+
# Site settings
|
12
|
+
# These are used to personalize your new site. If you look in the HTML files,
|
13
|
+
# you will see them accessed via {{ site.title }}, {{ site.author }}, and so on.
|
14
|
+
# You can create any custom variable you would like, and they will be accessible
|
15
|
+
# in the templates via {{ site.myvariable }}.
|
16
|
+
title: whiteglass theme
|
17
|
+
author: Yous
|
18
|
+
description: Minimal, responsive Jekyll theme for hackers.
|
19
|
+
baseurl: "/whiteglass" # the subpath of your site, e.g. /blog
|
20
|
+
url: "https://yous.github.io" # the base hostname & protocol for your site, e.g. http://example.com
|
21
|
+
lang: en
|
22
|
+
timezone: UTC
|
23
|
+
exclude:
|
24
|
+
- Gemfile
|
25
|
+
- Gemfile.lock
|
26
|
+
- Rakefile
|
27
|
+
- README.md
|
28
|
+
- LICENSE.txt
|
29
|
+
- CHANGELOG.md
|
30
|
+
- jekyll-whiteglass.gemspec
|
31
|
+
- screenshot.png
|
32
|
+
- vendor
|
33
|
+
|
34
|
+
# Social media
|
35
|
+
twitter_username:
|
36
|
+
twitter_image:
|
37
|
+
facebook_app_id:
|
38
|
+
facebook_image:
|
39
|
+
google_analytics:
|
40
|
+
comments: false
|
41
|
+
|
42
|
+
# Plugins
|
43
|
+
plugins:
|
44
|
+
- jekyll-archives
|
45
|
+
- jekyll-paginate
|
46
|
+
- jekyll-sitemap
|
47
|
+
|
48
|
+
# Build settings
|
49
|
+
markdown: kramdown
|
50
|
+
excerpt_separator: "<!-- more -->"
|
51
|
+
|
52
|
+
# Outputting
|
53
|
+
permalink: /:year/:month/:day/:title/
|
54
|
+
paginate_path: /posts/:num/
|
55
|
+
paginate: 5
|
56
|
+
|
57
|
+
# Markdown settings
|
58
|
+
kramdown:
|
59
|
+
auto_ids: false
|
60
|
+
enable_coderay: false
|
61
|
+
entity_output: as_char
|
62
|
+
footnote_nr: 1
|
63
|
+
smart_quotes: lsquo,rsquo,ldquo,rdquo
|
64
|
+
toc_levels: 1..6
|
65
|
+
|
66
|
+
# jekyll-archives
|
67
|
+
jekyll-archives:
|
68
|
+
enabled:
|
69
|
+
- categories
|
70
|
+
- tags
|
71
|
+
layout: category_archives
|
72
|
+
permalinks:
|
73
|
+
category: /categories/:name/
|
74
|
+
tag: /tags/:name/
|
data/_data/i18n.yml
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
en:
|
2
|
+
date:
|
3
|
+
format: "%b %-d, %Y" # See http://ruby-doc.org/core/Time.html#method-i-strftime for possible date formatting strings
|
4
|
+
abbr_day_names: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
|
5
|
+
abbr_month_names: ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
6
|
+
"Jul", "Aug", "Sep", "Oct", "Nov", "Dez"]
|
7
|
+
day_names: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
|
8
|
+
month_names: ["January", "February", "March", "April", "May", "June",
|
9
|
+
"July", "August", "September", "October", "November", "December"]
|
10
|
+
morelink: "Read on"
|
11
|
+
page-older: "Older"
|
12
|
+
page-newer: "Newer"
|
13
|
+
archive: "Blog Archive"
|
14
|
+
archive-category: "Archive of category '%1'"
|
15
|
+
archive-tag: "Archive of tag '%1'"
|
16
|
+
comments: "Comments"
|
17
|
+
de:
|
18
|
+
date:
|
19
|
+
format: "%e. %B %Y"
|
20
|
+
abbr_day_names: ["So", "Mo", "Di", "Mi", "Do", "Fr" , "Sa"]
|
21
|
+
abbr_month_names: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun",
|
22
|
+
"Jul", "Aug", "Sep", "Okt", "Nov", "Dez"]
|
23
|
+
day_names: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"]
|
24
|
+
month_names: ["Januar", "Februar", "März", "April", "Mai", "Juni",
|
25
|
+
"Juli", "August", "September", "Oktober", "November", "Dezember"]
|
26
|
+
morelink: "Weiterlesen"
|
27
|
+
page-older: "Ältere Beiträge"
|
28
|
+
page-newer: "Neuere Beiträge"
|
29
|
+
archive: "Blog Archiv"
|
30
|
+
archive-category: "Archiv der Kategorie '%1'"
|
31
|
+
archive-tag: "Archiv des Tags '%1'"
|
32
|
+
comments: "Kommentare"
|
33
|
+
de-AT:
|
34
|
+
date:
|
35
|
+
month_names: ["Jänner", "Februar", "März", "April", "Mai", "Juni",
|
36
|
+
"Juli", "August", "September", "Oktober", "November", "Dezember"]
|
37
|
+
abbr_month_names: ["Jän", "Feb", "Mär", "Apr", "Mai", "Jun",
|
38
|
+
"Jul", "Aug", "Sep", "Okt", "Nov", "Dez"]
|
39
|
+
ko:
|
40
|
+
date:
|
41
|
+
format: "%Y년 %-m월 %-d일"
|
42
|
+
abbr_day_names: ["일", "월", "화", "수", "목", "금", "토"]
|
43
|
+
abbr_month_names: ["1월", "2월", "3월", "4월", "5월", "6월",
|
44
|
+
"7월", "8월", "9월", "10월", "11월", "12월"]
|
45
|
+
day_names: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"]
|
46
|
+
month_names: ["1월", "2월", "3월", "4월", "5월", "6월",
|
47
|
+
"7월", "8월", "9월", "10월", "11월", "12월"]
|
48
|
+
morelink: "계속 읽기"
|
49
|
+
page-older: "이전"
|
50
|
+
page-newer: "다음"
|
51
|
+
archive: "블로그 아카이브"
|
52
|
+
archive-category: "'%1' 카테고리 아카이브"
|
53
|
+
archive-tag: "'%1' 태그 아카이브"
|
54
|
+
comments: "댓글"
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# If you want to link only specific pages in your header, add the path to the
|
2
|
+
# pages in order as they should show up.
|
3
|
+
main:
|
4
|
+
- title: "About"
|
5
|
+
url: /about/
|
6
|
+
- title: "Archives"
|
7
|
+
url: /archives/
|
8
|
+
- title: "GitHub"
|
9
|
+
url: https://github.com/yous/whiteglass
|
data/_includes/date.html
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
{%- if include.lang and include.lang != empty -%}
|
2
|
+
{%- assign plang = include.lang -%}
|
3
|
+
{%- else -%}
|
4
|
+
{%- assign plang = page.lang | default: site.lang | default: "en" -%}
|
5
|
+
{%- endif -%}
|
6
|
+
{%- assign splang = plang | truncate: 2, "" -%}
|
7
|
+
{%- if plang != "en" -%}
|
8
|
+
{%- assign dateformat = site.data.i18n.[plang].date.format | default: site.data.i18n.[splang].date.format | default: "%b %-d, %Y" -%}
|
9
|
+
{%- comment -%} The dateformat is determined based on the language. Now replace required variables (for now we ignore time based variables (%p, %P)) {%- endcomment -%}
|
10
|
+
{%- assign num_month = include.date | date: "%-m" | minus: 1 -%}
|
11
|
+
{%- assign num_day = include.date | date: "%w" | plus: 0 -%}
|
12
|
+
{%- assign i18n_dateformat = dateformat -%}
|
13
|
+
{%- assign abbr_day_name = site.data.i18n.[plang].date.abbr_day_names[num_day] | default: site.data.i18n.[splang].date.abbr_day_names[num_day] -%}
|
14
|
+
{%- if abbr_day_name -%}
|
15
|
+
{%- assign i18n_dateformat = i18n_dateformat | replace: "%a", abbr_day_name -%}
|
16
|
+
{%- endif -%}
|
17
|
+
{%- assign day_name = site.data.i18n.[plang].date.day_names[num_day] | default: site.data.i18n.[splang].date.day_names[num_day] -%}
|
18
|
+
{%- if day_name -%}
|
19
|
+
{%- assign i18n_dateformat = i18n_dateformat | replace: "%A", day_name -%}
|
20
|
+
{%- endif -%}
|
21
|
+
{%- assign abbr_month_name = site.data.i18n.[plang].date.abbr_month_names[num_month] | default: site.data.i18n.[splang].date.abbr_month_names[num_month] -%}
|
22
|
+
{%- if abbr_month_name -%}
|
23
|
+
{%- assign i18n_dateformat = i18n_dateformat | replace: "%b", abbr_month_name -%}
|
24
|
+
{%- endif -%}
|
25
|
+
{%- assign month_name = site.data.i18n.[plang].date.month_names[num_month] | default: site.data.i18n.[splang].date.month_names[num_month] -%}
|
26
|
+
{%- if month_name -%}
|
27
|
+
{%- assign i18n_dateformat = i18n_dateformat | replace: "%B", month_name -%}
|
28
|
+
{%- endif -%}
|
29
|
+
{{ include.date | date: i18n_dateformat }}
|
30
|
+
{%- else -%}
|
31
|
+
{{ include.date | date: "%b %-d, %Y" }}
|
32
|
+
{%- endif -%}
|
data/_includes/fonts.html
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
|
2
2
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
3
|
-
<link href="https://fonts.googleapis.com/css?family=Bitter:400,400i,700" rel="stylesheet">
|
3
|
+
<link href="https://fonts.googleapis.com/css?family=Bitter:400,400i,700&display=swap" rel="stylesheet">
|
data/_includes/i18n.html
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
{%- capture text -%}
|
2
|
+
{%- if include.lang and include.lang != empty -%}
|
3
|
+
{%- assign plang = include.lang -%}
|
4
|
+
{%- else -%}
|
5
|
+
{%- assign plang = page.lang | default: site.lang | default: "en" -%}
|
6
|
+
{%- endif -%}
|
7
|
+
{%- assign i18n-tag = include.value -%}
|
8
|
+
{%- assign splang = plang | truncate: 2, "" -%}
|
9
|
+
{%- if site.data.i18n.[plang].[i18n-tag] -%}
|
10
|
+
{{ site.data.i18n.[plang].[i18n-tag] }}
|
11
|
+
{%- elsif site.data.i18n.[splang].[i18n-tag] -%}
|
12
|
+
{{ site.data.i18n.[splang].[i18n-tag] }}
|
13
|
+
{%- else -%}
|
14
|
+
{{ include.default }}
|
15
|
+
{%- endif -%}
|
16
|
+
{%- endcapture -%}
|
17
|
+
{{ text | strip_newlines }}
|
data/_includes/pagination.html
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{% if paginator.total_pages > 1 %}
|
2
2
|
<div class="pagination">
|
3
3
|
{% if paginator.next_page %}
|
4
|
-
<a class="previous" href="{{ paginator.next_page_path | relative_url }}">« Older</a>
|
4
|
+
<a class="previous" href="{{ paginator.next_page_path | relative_url }}">« {% include i18n.html value="page-older" default="Older" %}</a>
|
5
5
|
{% endif %}
|
6
6
|
|
7
7
|
{% if paginator.previous_page %}
|
8
|
-
<a class="next" href="{{ paginator.previous_page_path | relative_url }}">Newer »</a>
|
8
|
+
<a class="next" href="{{ paginator.previous_page_path | relative_url }}">{% include i18n.html value="page-newer" default="Newer" %} »</a>
|
9
9
|
{% endif %}
|
10
10
|
</div>
|
11
11
|
{% endif %}
|
data/_layouts/archive.html
CHANGED
@@ -3,7 +3,7 @@ layout: default
|
|
3
3
|
---
|
4
4
|
<div class="home">
|
5
5
|
|
6
|
-
<h1 class="page-heading">Blog Archive</h1>
|
6
|
+
<h1 class="page-heading">{% include i18n.html value="archive" default="Blog Archive" %}</h1>
|
7
7
|
|
8
8
|
{{ content }}
|
9
9
|
|
@@ -16,7 +16,7 @@ layout: default
|
|
16
16
|
|
17
17
|
<li>
|
18
18
|
<span class="post-meta">
|
19
|
-
{
|
19
|
+
{% include date.html date=post.date lang=lang %}
|
20
20
|
{% if post.categories != empty or post.tags != empty %}
|
21
21
|
{% include category_links.html categories=post.categories tags=post.tags %}
|
22
22
|
{% endif %}
|
@@ -3,7 +3,10 @@ layout: default
|
|
3
3
|
---
|
4
4
|
<div class="home">
|
5
5
|
|
6
|
-
|
6
|
+
{% capture i18n-tag %}archive-{{ page.type }}{% endcapture %}
|
7
|
+
{% capture default-title %}Archive of {{ page.type }} '%1'{% endcapture %}
|
8
|
+
{% capture title %}{% include i18n.html value=i18n-tag default=default-title %}{% endcapture %}
|
9
|
+
<h1 class="page-heading">{{ title | replace: "%1", page.title | escape }}</h1>
|
7
10
|
|
8
11
|
{% capture site_lang %}{{ site.lang | default: "en" }}{% endcapture %}
|
9
12
|
|
data/_layouts/home.html
CHANGED
@@ -24,7 +24,7 @@ layout: default
|
|
24
24
|
</h1>
|
25
25
|
|
26
26
|
<p class="post-meta">
|
27
|
-
{
|
27
|
+
{% include date.html date=post.date lang=lang %}
|
28
28
|
{% if post.categories != empty or post.tags != empty %}
|
29
29
|
{% include category_links.html categories=post.categories tags=post.tags %}
|
30
30
|
{% endif %}
|
@@ -39,7 +39,7 @@ layout: default
|
|
39
39
|
</div>
|
40
40
|
{% if post.content contains site.excerpt_separator %}
|
41
41
|
<p class="post-continue">
|
42
|
-
<a href="{{ post.url | relative_url }}">Read on →</a>
|
42
|
+
<a href="{{ post.url | relative_url }}">{% include i18n.html lang=lang value="morelink" default="Read on" %} →</a>
|
43
43
|
</p>
|
44
44
|
{% endif %}
|
45
45
|
</li>
|
data/_layouts/post.html
CHANGED
@@ -9,7 +9,7 @@ layout: default
|
|
9
9
|
{% else %}
|
10
10
|
<h1 class="post-title" itemprop="name headline">{{ page.title | escape }}</h1>
|
11
11
|
{% endif %}
|
12
|
-
<p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{
|
12
|
+
<p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{% include date.html date=page.date %}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}{% if page.categories != empty or page.tags != empty %}{% include category_links.html categories=page.categories tags=page.tags %}{% endif %}</p>
|
13
13
|
</header>
|
14
14
|
|
15
15
|
<div class="post-content" itemprop="articleBody">
|
data/_sass/whiteglass.scss
CHANGED
@@ -12,9 +12,9 @@ $text-color: #111 !default;
|
|
12
12
|
$background-color: #fdfdfd !default;
|
13
13
|
$brand-color: #2568ba !default;
|
14
14
|
|
15
|
-
$grey-color: #
|
16
|
-
$grey-color-light: lighten($grey-color,
|
17
|
-
$grey-color-dark: darken($grey-color,
|
15
|
+
$grey-color: #757575 !default;
|
16
|
+
$grey-color-light: lighten($grey-color, 45%) !default;
|
17
|
+
$grey-color-dark: darken($grey-color, 20%) !default;
|
18
18
|
|
19
19
|
// Width of the content area
|
20
20
|
$content-width: 800px !default;
|
data/_sass/whiteglass/_base.scss
CHANGED
@@ -129,6 +129,10 @@ blockquote {
|
|
129
129
|
> :last-child {
|
130
130
|
margin-bottom: 0;
|
131
131
|
}
|
132
|
+
|
133
|
+
pre, code {
|
134
|
+
color: $text-color;
|
135
|
+
}
|
132
136
|
}
|
133
137
|
|
134
138
|
|
@@ -154,7 +158,7 @@ code {
|
|
154
158
|
font-size: 13px;
|
155
159
|
border: 1px solid $grey-color-light;
|
156
160
|
border-radius: 0;
|
157
|
-
background-color:
|
161
|
+
background-color: #f8f8f8;
|
158
162
|
}
|
159
163
|
|
160
164
|
code {
|
@@ -9,21 +9,21 @@
|
|
9
9
|
background-color: #f8f8f8;
|
10
10
|
}
|
11
11
|
|
12
|
-
.cm { color: #
|
13
|
-
.cp { color: #
|
14
|
-
.c1 { color: #
|
15
|
-
.cs { color: #
|
16
|
-
.c, .cd { color: #
|
12
|
+
.cm { color: #727262; font-style: italic } // Comment.Multiline
|
13
|
+
.cp { color: #727272; font-weight: bold } // Comment.Preproc
|
14
|
+
.c1 { color: #727262; font-style: italic } // Comment.Single
|
15
|
+
.cs { color: #727272; font-weight: bold; font-style: italic } // Comment.Special
|
16
|
+
.c, .cd { color: #727262; font-style: italic } // Comment, Comment.Doc
|
17
17
|
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
18
18
|
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
19
19
|
.ge { color: #000; font-style: italic } // Generic.Emph
|
20
20
|
.gr { color: #a00 } // Generic.Error
|
21
|
-
.gh { color: #
|
21
|
+
.gh { color: #727272 } // Generic.Heading
|
22
22
|
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
23
|
-
.go { color: #
|
23
|
+
.go { color: #727272 } // Generic.Output
|
24
24
|
.gp { color: #555 } // Generic.Prompt
|
25
25
|
.gs { font-weight: bold } // Generic.Strong
|
26
|
-
.gu { color: #
|
26
|
+
.gu { color: #727272 } // Generic.Subheading
|
27
27
|
.gt { color: #a00 } // Generic.Traceback
|
28
28
|
.kc { color: #000; font-weight: bold } // Keyword.Constant
|
29
29
|
.kd { color: #000; font-weight: bold } // Keyword.Declaration
|
@@ -32,12 +32,12 @@
|
|
32
32
|
.kr { color: #000; font-weight: bold } // Keyword.Reserved
|
33
33
|
.kt { color: #458; font-weight: bold } // Keyword.Type
|
34
34
|
.k, .kv { color: #000; font-weight: bold } // Keyword, Keyword.Variable
|
35
|
-
.mf { color: #
|
36
|
-
.mh { color: #
|
37
|
-
.il { color: #
|
38
|
-
.mi { color: #
|
39
|
-
.mo { color: #
|
40
|
-
.m, .mb, .mx { color: #
|
35
|
+
.mf { color: #007f7f } // Literal.Number.Float
|
36
|
+
.mh { color: #007f7f } // Literal.Number.Hex
|
37
|
+
.il { color: #007f7f } // Literal.Number.Integer.Long
|
38
|
+
.mi { color: #007f7f } // Literal.Number.Integer
|
39
|
+
.mo { color: #007f7f } // Literal.Number.Oct
|
40
|
+
.m, .mb, .mx { color: #007f7f } // Literal.Number, Literal.Number.Bin, Literal.Number.Other
|
41
41
|
.sb { color: #d14 } // Literal.String.Backtick
|
42
42
|
.sc { color: #d14 } // Literal.String.Char
|
43
43
|
.sd { color: #d14 } // Literal.String.Doc
|
@@ -46,15 +46,15 @@
|
|
46
46
|
.sh { color: #d14 } // Literal.String.Heredoc
|
47
47
|
.si { color: #d14 } // Literal.String.Interpol
|
48
48
|
.sx { color: #d14 } // Literal.String.Other
|
49
|
-
.sr { color: #
|
49
|
+
.sr { color: #008522 } // Literal.String.Regex
|
50
50
|
.s1 { color: #d14 } // Literal.String.Single
|
51
51
|
.ss { color: #990073 } // Literal.String.Symbol
|
52
52
|
.s { color: #d14 } // Literal.String
|
53
|
-
.na { color: #
|
54
|
-
.bp { color: #
|
55
|
-
.nb { color: #
|
53
|
+
.na { color: #007f7f } // Name.Attribute
|
54
|
+
.bp { color: #727272 } // Name.Builtin.Pseudo
|
55
|
+
.nb { color: #007aa3 } // Name.Builtin
|
56
56
|
.nc { color: #458; font-weight: bold } // Name.Class
|
57
|
-
.no { color: #
|
57
|
+
.no { color: #007f7f } // Name.Constant
|
58
58
|
.nd { color: #3c5d5d; font-weight: bold } // Name.Decorator
|
59
59
|
.ni { color: #800080 } // Name.Entity
|
60
60
|
.ne { color: #900; font-weight: bold } // Name.Exception
|
@@ -62,11 +62,11 @@
|
|
62
62
|
.nl { color: #900; font-weight: bold } // Name.Label
|
63
63
|
.nn { color: #555 } // Name.Namespace
|
64
64
|
.nt { color: #000080 } // Name.Tag
|
65
|
-
.vc { color: #
|
66
|
-
.vg { color: #
|
67
|
-
.vi { color: #
|
68
|
-
.nv { color: #
|
65
|
+
.vc { color: #007f7f } // Name.Variable.Class
|
66
|
+
.vg { color: #007f7f } // Name.Variable.Global
|
67
|
+
.vi { color: #007f7f } // Name.Variable.Instance
|
68
|
+
.nv { color: #007f7f } // Name.Variable
|
69
69
|
.ow { color: #000; font-weight: bold } // Operator.Word
|
70
70
|
.o { color: #000; font-weight: bold } // Operator
|
71
|
-
.w { color: #
|
71
|
+
.w { color: #727272 } // Text.Whitespace
|
72
72
|
}
|
data/assets/main.scss
CHANGED
@@ -17,9 +17,9 @@ $text-color: #111;
|
|
17
17
|
$background-color: #fdfdfd;
|
18
18
|
$brand-color: #2568ba;
|
19
19
|
|
20
|
-
$grey-color: #
|
21
|
-
$grey-color-light: lighten($grey-color,
|
22
|
-
$grey-color-dark: darken($grey-color,
|
20
|
+
$grey-color: #757575;
|
21
|
+
$grey-color-light: lighten($grey-color, 45%);
|
22
|
+
$grey-color-dark: darken($grey-color, 20%);
|
23
23
|
|
24
24
|
// Width of the content area
|
25
25
|
$content-width: 800px;
|
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-whiteglass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chayoung You
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '3.3'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '3.3'
|
27
27
|
- !ruby/object:Gem::Dependency
|
@@ -94,7 +94,7 @@ dependencies:
|
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
|
-
description:
|
97
|
+
description:
|
98
98
|
email:
|
99
99
|
- yousbe@gmail.com
|
100
100
|
executables: []
|
@@ -104,8 +104,12 @@ files:
|
|
104
104
|
- CHANGELOG.md
|
105
105
|
- LICENSE.txt
|
106
106
|
- README.md
|
107
|
+
- _config.yml
|
108
|
+
- _data/i18n.yml
|
109
|
+
- _data/navigation.yml
|
107
110
|
- _includes/category_links.html
|
108
111
|
- _includes/custom_comments_provider.html
|
112
|
+
- _includes/date.html
|
109
113
|
- _includes/fonts.html
|
110
114
|
- _includes/footer.html
|
111
115
|
- _includes/footer_content.html
|
@@ -113,6 +117,7 @@ files:
|
|
113
117
|
- _includes/head.html
|
114
118
|
- _includes/head_custom.html
|
115
119
|
- _includes/header.html
|
120
|
+
- _includes/i18n.html
|
116
121
|
- _includes/pagination.html
|
117
122
|
- _layouts/archive.html
|
118
123
|
- _layouts/category_archives.html
|
@@ -129,8 +134,12 @@ files:
|
|
129
134
|
homepage: https://github.com/yous/whiteglass
|
130
135
|
licenses:
|
131
136
|
- MIT
|
132
|
-
metadata:
|
133
|
-
|
137
|
+
metadata:
|
138
|
+
homepage_uri: https://github.com/yous/whiteglass
|
139
|
+
source_code_uri: https://github.com/yous/whiteglass
|
140
|
+
bug_tracker_uri: https://github.com/yous/whiteglass/issues
|
141
|
+
changelog_uri: https://github.com/yous/whiteglass/blob/master/CHANGELOG.md
|
142
|
+
post_install_message:
|
134
143
|
rdoc_options: []
|
135
144
|
require_paths:
|
136
145
|
- lib
|
@@ -145,8 +154,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
154
|
- !ruby/object:Gem::Version
|
146
155
|
version: '0'
|
147
156
|
requirements: []
|
148
|
-
rubygems_version: 3.
|
149
|
-
signing_key:
|
157
|
+
rubygems_version: 3.1.2
|
158
|
+
signing_key:
|
150
159
|
specification_version: 4
|
151
160
|
summary: Minimal, responsive Jekyll theme for hackers.
|
152
161
|
test_files: []
|