Han-theme 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/_includes/comments.html +5 -0
- data/_includes/custom.html +3 -0
- data/_includes/datetime.html +20 -0
- data/_includes/favicons.html +19 -0
- data/_includes/footer.html +36 -0
- data/_includes/head.html +107 -0
- data/_includes/js-selector.html +106 -0
- data/_includes/jsdelivr-combine.html +26 -0
- data/_includes/lang.html +10 -0
- data/_includes/language-alias.html +70 -0
- data/_includes/media-url.html +37 -0
- data/_includes/mermaid.html +62 -0
- data/_includes/metadata-hook.html +1 -0
- data/_includes/mode-toggle.html +116 -0
- data/_includes/no-linenos.html +10 -0
- data/_includes/notification.html +24 -0
- data/_includes/origin-type.html +13 -0
- data/_includes/post-description.html +16 -0
- data/_includes/post-nav.html +34 -0
- data/_includes/post-paginator.html +91 -0
- data/_includes/post-sharing.html +52 -0
- data/_includes/read-time.html +37 -0
- data/_includes/refactor-content.html +255 -0
- data/_includes/related-posts.html +94 -0
- data/_includes/search-loader.html +47 -0
- data/_includes/search-results.html +10 -0
- data/_includes/sidebar.html +102 -0
- data/_includes/toc.html +13 -0
- data/_includes/topbar.html +77 -0
- data/_includes/trending-tags.html +46 -0
- data/_includes/update-list.html +40 -0
- data/_layouts/archives.html +35 -0
- data/_layouts/categories.html +138 -0
- data/_layouts/category.html +24 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +76 -0
- data/_layouts/home.html +115 -0
- data/_layouts/page.html +20 -0
- data/_layouts/portfolio.html +82 -0
- data/_layouts/post.html +152 -0
- data/_layouts/tag.html +23 -0
- data/_layouts/tags.html +22 -0
- data/assets/404.html +14 -0
- data/assets/feed.xml +54 -0
- data/assets/robots.txt +10 -0
- metadata +282 -0
@@ -0,0 +1,102 @@
|
|
1
|
+
<!-- The Side Bar -->
|
2
|
+
|
3
|
+
<aside aria-label="Sidebar" id="sidebar" class="d-flex flex-column align-items-end">
|
4
|
+
<header class="profile-wrapper">
|
5
|
+
<a href="{{ '/' | relative_url }}" id="avatar" > <!-- class="rounded-circle"있었는데 뺌-->
|
6
|
+
{%- if site.avatar != empty and site.avatar -%}
|
7
|
+
{%- capture avatar_url -%}
|
8
|
+
{% include media-url.html src=site.avatar %}
|
9
|
+
{%- endcapture -%}
|
10
|
+
<img src="{{- avatar_url -}}" width="150" height="150" alt="avatar" onerror="this.style.display='none'">
|
11
|
+
{%- endif -%}
|
12
|
+
</a>
|
13
|
+
|
14
|
+
<h1 class="site-title">
|
15
|
+
<a href="{{ '/' | relative_url }}">{{ site.title }}</a>
|
16
|
+
</h1>
|
17
|
+
|
18
|
+
<p class="site-subtitle">{{ site.tagline }}</p> <!--클래스에 fst-italic mb-0"있었는데 뺌-->
|
19
|
+
<p class="site-subtitle">{{ # }}</p> <!--여기에 기술 스택 추가하면 좋을듯-->
|
20
|
+
</header>
|
21
|
+
<div class="sidebar-bottom d-flex align-items-center w-100">
|
22
|
+
{% unless site.theme_mode %}
|
23
|
+
<button type="button" class="btn btn-link nav-link" aria-label="Switch Mode" id="mode-toggle">
|
24
|
+
<i class="fas fa-adjust"></i>
|
25
|
+
</button>
|
26
|
+
|
27
|
+
{% if site.data.contact.size > 0 %}
|
28
|
+
<span class="icon-border"></span>
|
29
|
+
{% endif %}
|
30
|
+
{% endunless %}
|
31
|
+
|
32
|
+
{% for entry in site.data.contact %}
|
33
|
+
{% case entry.type %}
|
34
|
+
{% when 'github', 'twitter' %}
|
35
|
+
{%- capture url -%}
|
36
|
+
https://{{ entry.type }}.com/{{ site[entry.type].username }}
|
37
|
+
{%- endcapture -%}
|
38
|
+
{% when 'email' %}
|
39
|
+
{% assign email = site.social.email | split: '@' %}
|
40
|
+
{%- capture url -%}
|
41
|
+
javascript:location.href = 'mailto:' + ['{{ email[0] }}','{{ email[1] }}'].join('@')
|
42
|
+
{%- endcapture -%}
|
43
|
+
{% when 'rss' %}
|
44
|
+
{% assign url = '/feed.xml' | relative_url %}
|
45
|
+
{% else %}
|
46
|
+
{% assign url = entry.url %}
|
47
|
+
{% endcase %}
|
48
|
+
|
49
|
+
{% if url %}
|
50
|
+
<a
|
51
|
+
href="{{ url }}"
|
52
|
+
aria-label="{{ entry.type }}"
|
53
|
+
{% assign link_types = '' %}
|
54
|
+
|
55
|
+
{% unless entry.noblank %}
|
56
|
+
target="_blank"
|
57
|
+
{% assign link_types = 'noopener noreferrer' %}
|
58
|
+
{% endunless %}
|
59
|
+
|
60
|
+
{% if entry.type == 'mastodon' %}
|
61
|
+
{% assign link_types = link_types | append: ' me' | strip %}
|
62
|
+
{% endif %}
|
63
|
+
|
64
|
+
{% unless link_types == empty %}
|
65
|
+
rel="{{ link_types }}"
|
66
|
+
{% endunless %}
|
67
|
+
>
|
68
|
+
<i class="{{ entry.icon }}"></i>
|
69
|
+
</a>
|
70
|
+
{% endif %}
|
71
|
+
{% endfor %}
|
72
|
+
</div>
|
73
|
+
<!-- .profile-wrapper -->
|
74
|
+
|
75
|
+
<nav class="flex-column flex-grow-1 w-100 ps-0">
|
76
|
+
<ul class="nav">
|
77
|
+
<!-- home -->
|
78
|
+
<li class="nav-item{% if page.layout == 'home' %}{{ " active" }}{% endif %}">
|
79
|
+
<!-- <a href="{{ '/' | relative_url }}" class="nav-link">
|
80
|
+
<i class="fa-fw fas fa-home"></i>
|
81
|
+
<span>{{ site.data.locales[include.lang].tabs.home | upcase }}</span>
|
82
|
+
</a> -->
|
83
|
+
</li>
|
84
|
+
<!-- the real tabs -->
|
85
|
+
{% for tab in site.tabs %}
|
86
|
+
<li class="nav-item{% if tab.url == page.url %}{{ " active" }}{% endif %}">
|
87
|
+
<a href="{{ tab.url | relative_url }}" class="nav-link">
|
88
|
+
<i class="fa-fw {{ tab.icon }}"></i>
|
89
|
+
{% capture tab_name %}{{ tab.url | split: '/' }}{% endcapture %}
|
90
|
+
|
91
|
+
<span>{{ site.data.locales[include.lang].tabs.[tab_name] | default: tab.title | upcase }}</span>
|
92
|
+
</a>
|
93
|
+
</li>
|
94
|
+
<!-- .nav-item -->
|
95
|
+
{% endfor %}
|
96
|
+
</ul>
|
97
|
+
</nav>
|
98
|
+
|
99
|
+
|
100
|
+
<!-- .sidebar-bottom -->
|
101
|
+
</aside>
|
102
|
+
<!-- #sidebar -->
|
data/_includes/toc.html
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
{% assign enable_toc = false %}
|
2
|
+
{% if site.toc and page.toc %}
|
3
|
+
{% if page.content contains '<h2' or page.content contains '<h3' %}
|
4
|
+
{% assign enable_toc = true %}
|
5
|
+
{% endif %}
|
6
|
+
{% endif %}
|
7
|
+
|
8
|
+
{% if enable_toc %}
|
9
|
+
<section id="toc-wrapper" class="d-none ps-0 pe-4">
|
10
|
+
<h2 class="panel-heading ps-3 mb-2">{{- site.data.locales[include.lang].panel.toc -}}</h2>
|
11
|
+
<nav id="toc"></nav>
|
12
|
+
</section>
|
13
|
+
{% endif %}
|
@@ -0,0 +1,77 @@
|
|
1
|
+
<!-- The Top Bar -->
|
2
|
+
|
3
|
+
<header id="topbar-wrapper" aria-label="Top Bar">
|
4
|
+
<div
|
5
|
+
id="topbar"
|
6
|
+
class="d-flex align-items-center justify-content-between px-lg-3 h-100"
|
7
|
+
>
|
8
|
+
<nav id="breadcrumb" aria-label="Breadcrumb">
|
9
|
+
{% assign paths = page.url | split: '/' %}
|
10
|
+
|
11
|
+
{% if paths.size == 0 or page.layout == 'home' %}
|
12
|
+
<!-- index page -->
|
13
|
+
<span>{{ site.data.locales[include.lang].tabs.home | capitalize }}</span>
|
14
|
+
|
15
|
+
{% else %}
|
16
|
+
{% for item in paths %}
|
17
|
+
{% if forloop.first %}
|
18
|
+
<span>
|
19
|
+
<a href="{{ '/' | relative_url }}">
|
20
|
+
{{- site.data.locales[include.lang].tabs.home | capitalize -}}
|
21
|
+
</a>
|
22
|
+
</span>
|
23
|
+
|
24
|
+
{% elsif forloop.last %}
|
25
|
+
{% if page.collection == 'tabs' %}
|
26
|
+
<span>{{ site.data.locales[include.lang].tabs[item] | default: page.title }}</span>
|
27
|
+
{% else %}
|
28
|
+
<span>{{ page.title }}</span>
|
29
|
+
{% endif %}
|
30
|
+
|
31
|
+
{% elsif page.layout == 'category' or page.layout == 'tag' %}
|
32
|
+
<span>
|
33
|
+
<a href="{{ item | append: '/' | relative_url }}">
|
34
|
+
{{- site.data.locales[include.lang].tabs[item] | default: page.title -}}
|
35
|
+
</a>
|
36
|
+
</span>
|
37
|
+
{% endif %}
|
38
|
+
{% endfor %}
|
39
|
+
{% endif %}
|
40
|
+
</nav>
|
41
|
+
<!-- endof #breadcrumb -->
|
42
|
+
|
43
|
+
<button type="button" id="sidebar-trigger" class="btn btn-link">
|
44
|
+
<i class="fas fa-bars fa-fw"></i>
|
45
|
+
</button>
|
46
|
+
|
47
|
+
<div id="topbar-title">
|
48
|
+
{% if page.layout == 'home' %}
|
49
|
+
{{- site.data.locales[include.lang].title | default: site.title -}}
|
50
|
+
{% elsif page.collection == 'tabs' or page.layout == 'page' %}
|
51
|
+
{%- capture tab_key -%}{{ page.url | split: '/' }}{%- endcapture -%}
|
52
|
+
{{- site.data.locales[include.lang].tabs[tab_key] | default: page.title -}}
|
53
|
+
{% else %}
|
54
|
+
{{- site.data.locales[include.lang].layout[page.layout] | default: page.layout | capitalize -}}
|
55
|
+
{% endif %}
|
56
|
+
</div>
|
57
|
+
|
58
|
+
<button type="button" id="search-trigger" class="btn btn-link">
|
59
|
+
<i class="fas fa-search fa-fw"></i>
|
60
|
+
</button>
|
61
|
+
|
62
|
+
<search id="search" class="align-items-center ms-3 ms-lg-0">
|
63
|
+
<i class="fas fa-search fa-fw"></i>
|
64
|
+
<input
|
65
|
+
class="form-control"
|
66
|
+
id="search-input"
|
67
|
+
type="search"
|
68
|
+
aria-label="search"
|
69
|
+
autocomplete="off"
|
70
|
+
placeholder="{{ site.data.locales[include.lang].search.hint | capitalize }}..."
|
71
|
+
>
|
72
|
+
</search>
|
73
|
+
<button type="button" class="btn btn-link text-decoration-none" id="search-cancel">
|
74
|
+
{{- site.data.locales[include.lang].search.cancel -}}
|
75
|
+
</button>
|
76
|
+
</div>
|
77
|
+
</header>
|
@@ -0,0 +1,46 @@
|
|
1
|
+
<!-- The trending tags list -->
|
2
|
+
|
3
|
+
{% assign MAX = 10 %}
|
4
|
+
|
5
|
+
{% assign size_list = '' | split: '' %}
|
6
|
+
{% assign tag_list = '' | split: '' %}
|
7
|
+
|
8
|
+
{% for tag in site.tags %}
|
9
|
+
{% assign size = tag | last | size %}
|
10
|
+
{% assign size_list = size_list | push: size %}
|
11
|
+
|
12
|
+
{% assign tag_str = tag | first | append: '::' | append: size %}
|
13
|
+
{% assign tag_list = tag_list | push: tag_str %}
|
14
|
+
{% endfor %}
|
15
|
+
|
16
|
+
{% assign size_list = size_list | sort | reverse %}
|
17
|
+
|
18
|
+
{% assign tag_list = tag_list | sort_natural %}
|
19
|
+
|
20
|
+
{% assign trending_tags = '' | split: '' %}
|
21
|
+
|
22
|
+
{% for size in size_list limit: MAX %}
|
23
|
+
{% for tag_str in tag_list %}
|
24
|
+
{% assign tag = tag_str | split: '::' %}
|
25
|
+
{% assign tag_name = tag | first %}
|
26
|
+
{% assign tag_size = tag | last | plus: 0 %}
|
27
|
+
{% if tag_size == size %}
|
28
|
+
{% unless trending_tags contains tag_name %}
|
29
|
+
{% assign trending_tags = trending_tags | push: tag_name %}
|
30
|
+
{% break %}
|
31
|
+
{% endunless %}
|
32
|
+
{% endif %}
|
33
|
+
{% endfor %}
|
34
|
+
{% endfor %}
|
35
|
+
|
36
|
+
{% if trending_tags.size > 0 %}
|
37
|
+
<section>
|
38
|
+
<h2 class="panel-heading">{{- site.data.locales[include.lang].panel.trending_tags -}}</h2>
|
39
|
+
<div class="d-flex flex-wrap mt-3 mb-1 me-3">
|
40
|
+
{% for tag_name in trending_tags %}
|
41
|
+
{% assign url = tag_name | slugify | url_encode | prepend: '/tags/' | append: '/' %}
|
42
|
+
<a class="post-tag btn btn-outline-primary" href="{{ url | relative_url }}">{{ tag_name }}</a>
|
43
|
+
{% endfor %}
|
44
|
+
</div>
|
45
|
+
</section>
|
46
|
+
{% endif %}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
<!-- Get 5 last posted/updated posts -->
|
2
|
+
|
3
|
+
{% assign MAX_SIZE = 5 %}
|
4
|
+
|
5
|
+
{% assign all_list = '' | split: '' %}
|
6
|
+
|
7
|
+
{% for post in site.posts %}
|
8
|
+
{% assign datetime = post.last_modified_at | default: post.date %}
|
9
|
+
|
10
|
+
{% capture elem %}
|
11
|
+
{{- datetime | date: "%Y%m%d%H%M%S" -}}::{{- forloop.index0 -}}
|
12
|
+
{% endcapture %}
|
13
|
+
|
14
|
+
{% assign all_list = all_list | push: elem %}
|
15
|
+
{% endfor %}
|
16
|
+
|
17
|
+
{% assign all_list = all_list | sort | reverse %}
|
18
|
+
|
19
|
+
{% assign update_list = '' | split: '' %}
|
20
|
+
|
21
|
+
{% for entry in all_list limit: MAX_SIZE %}
|
22
|
+
{% assign update_list = update_list | push: entry %}
|
23
|
+
{% endfor %}
|
24
|
+
|
25
|
+
{% if update_list.size > 0 %}
|
26
|
+
<section id="access-lastmod">
|
27
|
+
<h2 class="panel-heading">{{- site.data.locales[include.lang].panel.lastmod -}}</h2>
|
28
|
+
<ul class="content list-unstyled ps-0 pb-1 ms-1 mt-2">
|
29
|
+
{% for item in update_list %}
|
30
|
+
{% assign index = item | split: '::' | last | plus: 0 %}
|
31
|
+
{% assign post = site.posts[index] %}
|
32
|
+
{% assign url = post.url | relative_url %}
|
33
|
+
<li class="text-truncate lh-lg">
|
34
|
+
<a href="{{ url }}">{{ post.title }}</a>
|
35
|
+
</li>
|
36
|
+
{% endfor %}
|
37
|
+
</ul>
|
38
|
+
</section>
|
39
|
+
<!-- #access-lastmod -->
|
40
|
+
{% endif %}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
# The Archives of posts.
|
4
|
+
---
|
5
|
+
|
6
|
+
{% include lang.html %}
|
7
|
+
|
8
|
+
{% assign df_strftime_m = site.data.locales[lang].df.archives.strftime | default: '/ %m' %}
|
9
|
+
{% assign df_dayjs_m = site.data.locales[lang].df.archives.dayjs | default: '/ MM' %}
|
10
|
+
|
11
|
+
<div id="archives" class="pl-xl-3">
|
12
|
+
{% for post in site.posts %}
|
13
|
+
{% assign cur_year = post.date | date: '%Y' %}
|
14
|
+
|
15
|
+
{% if cur_year != last_year %}
|
16
|
+
{% unless forloop.first %}</ul>{% endunless %}
|
17
|
+
|
18
|
+
<time class="year lead d-block">{{ cur_year }}</time>
|
19
|
+
{{ '<ul class="list-unstyled">' }}
|
20
|
+
|
21
|
+
{% assign last_year = cur_year %}
|
22
|
+
{% endif %}
|
23
|
+
|
24
|
+
<li>
|
25
|
+
{% assign ts = post.date | date: '%s' %}
|
26
|
+
<span class="date day" data-ts="{{ ts }}" data-df="DD">{{ post.date | date: '%d' }}</span>
|
27
|
+
<span class="date month small text-muted ms-1" data-ts="{{ ts }}" data-df="{{ df_dayjs_m }}">
|
28
|
+
{{ post.date | date: df_strftime_m }}
|
29
|
+
</span>
|
30
|
+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
31
|
+
</li>
|
32
|
+
|
33
|
+
{% if forloop.last %}</ul>{% endif %}
|
34
|
+
{% endfor %}
|
35
|
+
</div>
|
@@ -0,0 +1,138 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
# All the Categories of posts
|
4
|
+
---
|
5
|
+
|
6
|
+
{% include lang.html %}
|
7
|
+
|
8
|
+
{% assign HEAD_PREFIX = 'h_' %}
|
9
|
+
{% assign LIST_PREFIX = 'l_' %}
|
10
|
+
|
11
|
+
{% assign group_index = 0 %}
|
12
|
+
|
13
|
+
{% assign sort_categories = site.categories | sort %}
|
14
|
+
|
15
|
+
{% for category in sort_categories %}
|
16
|
+
{% assign category_name = category | first %}
|
17
|
+
{% assign posts_of_category = category | last %}
|
18
|
+
{% assign first_post = posts_of_category | first %}
|
19
|
+
|
20
|
+
{% if category_name == first_post.categories[0] %}
|
21
|
+
{% assign sub_categories = '' | split: '' %}
|
22
|
+
|
23
|
+
{% for post in posts_of_category %}
|
24
|
+
{% assign second_category = post.categories[1] %}
|
25
|
+
{% if second_category %}
|
26
|
+
{% unless sub_categories contains second_category %}
|
27
|
+
{% assign sub_categories = sub_categories | push: second_category %}
|
28
|
+
{% endunless %}
|
29
|
+
{% endif %}
|
30
|
+
{% endfor %}
|
31
|
+
|
32
|
+
{% assign sub_categories = sub_categories | sort %}
|
33
|
+
{% assign sub_categories_size = sub_categories | size %}
|
34
|
+
|
35
|
+
<div class="card categories">
|
36
|
+
<!-- top-category -->
|
37
|
+
<div
|
38
|
+
id="{{ HEAD_PREFIX }}{{ group_index }}"
|
39
|
+
class="card-header d-flex justify-content-between hide-border-bottom"
|
40
|
+
>
|
41
|
+
<span class="ms-2">
|
42
|
+
<i class="far fa-folder{% if sub_categories_size > 0 %}-open{% endif %} fa-fw"></i>
|
43
|
+
|
44
|
+
{% capture _category_url %}/categories/{{ category_name | slugify | url_encode }}/{% endcapture %}
|
45
|
+
<a href="{{ _category_url | relative_url }}" class="mx-2">{{ category_name }}</a>
|
46
|
+
|
47
|
+
<!-- content count -->
|
48
|
+
{% assign top_posts_size = site.categories[category_name] | size %}
|
49
|
+
<span class="text-muted small font-weight-light">
|
50
|
+
{% if sub_categories_size > 0 %}
|
51
|
+
{{ sub_categories_size }}
|
52
|
+
{% if sub_categories_size > 1 %}
|
53
|
+
{{
|
54
|
+
site.data.locales[lang].categories.category_measure.plural
|
55
|
+
| default: site.data.locales[lang].categories.category_measure
|
56
|
+
}}
|
57
|
+
{% else %}
|
58
|
+
{{
|
59
|
+
site.data.locales[lang].categories.category_measure.singular
|
60
|
+
| default: site.data.locales[lang].categories.category_measure
|
61
|
+
}}
|
62
|
+
{% endif -%}
|
63
|
+
,
|
64
|
+
{% endif %}
|
65
|
+
|
66
|
+
{{ top_posts_size }}
|
67
|
+
|
68
|
+
{% if top_posts_size > 1 %}
|
69
|
+
{{
|
70
|
+
site.data.locales[lang].categories.post_measure.plural
|
71
|
+
| default: site.data.locales[lang].categories.post_measure
|
72
|
+
}}
|
73
|
+
{% else %}
|
74
|
+
{{
|
75
|
+
site.data.locales[lang].categories.post_measure.singular
|
76
|
+
| default: site.data.locales[lang].categories.post_measure
|
77
|
+
}}
|
78
|
+
{% endif %}
|
79
|
+
</span>
|
80
|
+
</span>
|
81
|
+
|
82
|
+
<!-- arrow -->
|
83
|
+
{% if sub_categories_size > 0 %}
|
84
|
+
<a
|
85
|
+
href="#{{ LIST_PREFIX }}{{ group_index }}"
|
86
|
+
data-bs-toggle="collapse"
|
87
|
+
aria-expanded="true"
|
88
|
+
aria-label="{{ HEAD_PREFIX }}{{ group_index }}-trigger"
|
89
|
+
class="category-trigger hide-border-bottom"
|
90
|
+
>
|
91
|
+
<i class="fas fa-fw fa-angle-down"></i>
|
92
|
+
</a>
|
93
|
+
{% else %}
|
94
|
+
<span data-bs-toggle="collapse" class="category-trigger hide-border-bottom disabled">
|
95
|
+
<i class="fas fa-fw fa-angle-right"></i>
|
96
|
+
</span>
|
97
|
+
{% endif %}
|
98
|
+
</div>
|
99
|
+
<!-- .card-header -->
|
100
|
+
|
101
|
+
<!-- Sub-categories -->
|
102
|
+
{% if sub_categories_size > 0 %}
|
103
|
+
<div id="{{ LIST_PREFIX }}{{ group_index }}" class="collapse show" aria-expanded="true">
|
104
|
+
<ul class="list-group">
|
105
|
+
{% for sub_category in sub_categories %}
|
106
|
+
<li class="list-group-item">
|
107
|
+
<i class="far fa-folder fa-fw"></i>
|
108
|
+
|
109
|
+
{% capture _sub_ctg_url %}/categories/{{ sub_category | slugify | url_encode }}/{% endcapture %}
|
110
|
+
<a href="{{ _sub_ctg_url | relative_url }}" class="mx-2">{{ sub_category }}</a>
|
111
|
+
|
112
|
+
{% assign posts_size = site.categories[sub_category] | size %}
|
113
|
+
<span class="text-muted small font-weight-light">
|
114
|
+
{{ posts_size }}
|
115
|
+
|
116
|
+
{% if posts_size > 1 %}
|
117
|
+
{{
|
118
|
+
site.data.locales[lang].categories.post_measure.plural
|
119
|
+
| default: site.data.locales[lang].categories.post_measure
|
120
|
+
}}
|
121
|
+
{% else %}
|
122
|
+
{{
|
123
|
+
site.data.locales[lang].categories.post_measure.singular
|
124
|
+
| default: site.data.locales[lang].categories.post_measure
|
125
|
+
}}
|
126
|
+
{% endif %}
|
127
|
+
</span>
|
128
|
+
</li>
|
129
|
+
{% endfor %}
|
130
|
+
</ul>
|
131
|
+
</div>
|
132
|
+
{% endif %}
|
133
|
+
</div>
|
134
|
+
<!-- .card -->
|
135
|
+
|
136
|
+
{% assign group_index = group_index | plus: 1 %}
|
137
|
+
{% endif %}
|
138
|
+
{% endfor %}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
# The Category layout
|
4
|
+
---
|
5
|
+
|
6
|
+
{% include lang.html %}
|
7
|
+
|
8
|
+
<div id="page-category">
|
9
|
+
<h1 class="ps-lg-2">
|
10
|
+
<i class="far fa-folder-open fa-fw text-muted"></i>
|
11
|
+
{{ page.title }}
|
12
|
+
<span class="lead text-muted ps-2">{{ page.posts | size }}</span>
|
13
|
+
</h1>
|
14
|
+
|
15
|
+
<ul class="content ps-0">
|
16
|
+
{% for post in page.posts %}
|
17
|
+
<li class="d-flex justify-content-between px-md-3">
|
18
|
+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
19
|
+
<span class="dash flex-grow-1"></span>
|
20
|
+
{% include datetime.html date=post.date class='text-muted small text-nowrap' lang=lang %}
|
21
|
+
</li>
|
22
|
+
{% endfor %}
|
23
|
+
</ul>
|
24
|
+
</div>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
# Jekyll layout that compresses HTML
|
3
|
+
# v3.2.0
|
4
|
+
# http://jch.penibelst.de/
|
5
|
+
# © 2014–2015 Anatol Broder
|
6
|
+
# MIT License
|
7
|
+
---
|
8
|
+
|
9
|
+
{% capture _LINE_FEED %}
|
10
|
+
{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment or site.compress_html.ignore.envs == "all" or page.compress_html == false %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
|
@@ -0,0 +1,76 @@
|
|
1
|
+
---
|
2
|
+
layout: compress
|
3
|
+
---
|
4
|
+
|
5
|
+
<!doctype html>
|
6
|
+
|
7
|
+
{% include origin-type.html %}
|
8
|
+
|
9
|
+
{% include lang.html %}
|
10
|
+
|
11
|
+
{% if site.theme_mode %}
|
12
|
+
{% capture prefer_mode %}data-mode="{{ site.theme_mode }}"{% endcapture %}
|
13
|
+
{% endif %}
|
14
|
+
|
15
|
+
<!-- `site.alt_lang` can specify a language different from the UI -->
|
16
|
+
<html lang="{{ page.lang | default: site.alt_lang | default: site.lang }}" {{ prefer_mode }}>
|
17
|
+
{% include head.html %}
|
18
|
+
<body>
|
19
|
+
{% include sidebar.html lang=lang %}
|
20
|
+
<div id="main-wrapper" class="d-flex justify-content-center">
|
21
|
+
<div class="container d-flex flex-column px-xxl-5">
|
22
|
+
{% include topbar.html lang=lang %}
|
23
|
+
<div class="row flex-grow-1">
|
24
|
+
<main aria-label="Main Content" class="col-12 col-lg-11 col-xl-9 px-md-4">
|
25
|
+
{% if layout.refactor or layout.layout == 'default' %}
|
26
|
+
{% include refactor-content.html content=content lang=lang %}
|
27
|
+
{% else %}
|
28
|
+
{{ content }}
|
29
|
+
{% endif %}
|
30
|
+
</main>
|
31
|
+
<!-- panel -->
|
32
|
+
<aside aria-label="Panel" id="panel-wrapper" class="col-xl-3 ps-2 mb-5 text-muted">
|
33
|
+
<div class="access">
|
34
|
+
{% include_cached update-list.html lang=lang %}
|
35
|
+
{% include_cached trending-tags.html lang=lang %}
|
36
|
+
</div>
|
37
|
+
{% for _include in layout.panel_includes %}
|
38
|
+
{% assign _include_path = _include | append: '.html' %}
|
39
|
+
{% include {{ _include_path }} lang=lang %}
|
40
|
+
{% endfor %}
|
41
|
+
</aside>
|
42
|
+
</div>
|
43
|
+
<div class="row">
|
44
|
+
<!-- tail -->
|
45
|
+
<div id="tail-wrapper" class="col-12 col-lg-11 col-xl-9 px-md-4">
|
46
|
+
{% for _include in layout.tail_includes %}
|
47
|
+
{% assign _include_path = _include | append: '.html' %}
|
48
|
+
{% include {{ _include_path }} lang=lang %}
|
49
|
+
{% endfor %}
|
50
|
+
|
51
|
+
{% include_cached footer.html lang=lang %}
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
|
55
|
+
{% include_cached search-results.html lang=lang %}
|
56
|
+
</div>
|
57
|
+
|
58
|
+
<aside aria-label="Scroll to Top">
|
59
|
+
<button id="back-to-top" type="button" class="btn btn-lg btn-box-shadow">
|
60
|
+
<i class="fas fa-angle-up"></i>
|
61
|
+
</button>
|
62
|
+
</aside>
|
63
|
+
</div>
|
64
|
+
|
65
|
+
<div id="mask"></div>
|
66
|
+
|
67
|
+
{% if site.pwa.enabled %}
|
68
|
+
{% include_cached notification.html lang=lang %}
|
69
|
+
{% endif %}
|
70
|
+
|
71
|
+
<!-- JavaScripts -->
|
72
|
+
{% include js-selector.html lang=lang %}
|
73
|
+
|
74
|
+
{% include_cached search-loader.html lang=lang %}
|
75
|
+
</body>
|
76
|
+
</html>
|