jekyll-theme-yat 1.3.1 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +52 -8
- data/_data/translate_langs.yml +0 -4
- data/_includes/functions/get_reading_time.html +41 -0
- data/_includes/head.html +8 -1
- data/_includes/sidebar/article-menu.html +53 -4
- data/_includes/views/banner.html +3 -36
- data/_includes/views/header.html +2 -4
- data/_includes/views/pagination.html +16 -3
- data/_includes/views/paginator.html +10 -6
- data/_includes/views/post-header.html +16 -2
- data/_layouts/about.html +9 -0
- data/_layouts/post.html +39 -13
- data/_sass/misc/article-menu.scss +31 -16
- data/_sass/misc/common-list.scss +4 -8
- data/_sass/misc/google-translate.scss +14 -3
- data/_sass/yat.scss +11 -12
- data/_sass/yat/_base.scss +39 -18
- data/_sass/yat/_layout.scss +334 -28
- data/assets/css/main.scss +4 -8
- data/assets/images/banners/home.jpeg +0 -0
- data/assets/js/main.js +24 -0
- metadata +39 -19
- data/_sass/yat/_syntax-highlighting.scss +0 -105
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa66b045f81c89271c8b0253f29ed221e4a244f141eb8647ced39b6339c2ca1f
|
4
|
+
data.tar.gz: 4f16a912676e9c3e8ff15958921243395e6293800459b791b0051ffd51956fcf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fd2e3ddd8c4d0925d6fb1fd4c97a1cf9d18f18c0ce883bef1eaa8420e495a4a0b9cd81e8d935a072d41dbb3a3798f16fce205273b652ec052348698c640688e
|
7
|
+
data.tar.gz: 42e7b333888f073f3d80fb079cc089758300c5491b575109f6f53dd1f4147219482cd26aa60779daa69fb8bc7f9e847c9debddbc51da81f40635840f3230b1d9
|
data/README.md
CHANGED
@@ -1,11 +1,39 @@
|
|
1
1
|
# jekyll-theme-yat
|
2
|
+
[![Github Pages](https://github.com/jeffreytse/jekyll-theme-yat/workflows/Github%20Pages/badge.svg)](https://jeffreytse.github.io/jekyll-theme-yat)
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/jekyll-theme-yat.svg)](http://badge.fury.io/rb/jekyll-theme-yat)
|
4
|
+
[![License: MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
|
5
|
+
[![Donate (Liberapay)](http://img.shields.io/liberapay/goal/jeffreytse.svg?logo=liberapay)](https://liberapay.com/jeffreytse)
|
6
|
+
[![Donate (Patreon)](https://img.shields.io/badge/support-patreon-F96854.svg?style=flat-square)](https://patreon.com/jeffreytse)
|
7
|
+
<a href="https://ko-fi.com/jeffreytse">
|
8
|
+
<img height="20" src="https://www.ko-fi.com/img/githubbutton_sm.svg"
|
9
|
+
alt="Donate (Ko-fi)" />
|
10
|
+
</a>
|
2
11
|
|
3
|
-
|
12
|
+
Hey, nice to meet you, you found this Jekyll theme. Here the yet another theme is a modern theme, and it's quiet clear, clean and neat for writers and posts.
|
4
13
|
|
5
|
-
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
6
14
|
|
7
|
-
|
15
|
+
<p align="center">
|
8
16
|
|
17
|
+
<img src="https://user-images.githubusercontent.com/9413601/91711123-f169b280-ebb7-11ea-8f5e-0867c713cdfc.png" alt="demo-screenshot" width="720px"/>
|
18
|
+
|
19
|
+
</p>
|
20
|
+
|
21
|
+
## Features
|
22
|
+
|
23
|
+
- Full layouts `home`, `post`, `tags`, `archive` and `about`.
|
24
|
+
- Uses font awesome 5 for icons.
|
25
|
+
- Beautiful Syntax Highlight using [hilight.js][hilight-js].
|
26
|
+
- RSS support using [Jekyll Feed][jekyll-feed] gem.
|
27
|
+
- Optimized for search engines using [Jekyll Seo Tag][jekyll-seo-tag] gem.
|
28
|
+
- Sitemap support using [Jekyll Sitemap][jekyll-sitemap] gem.
|
29
|
+
- Complex and flexible table support using [Jekyll Spaceship][jekyll-spaceship] gem.
|
30
|
+
- MathJAX and LaTeX optional support using [Jekyll Spaceship][jekyll-spaceship] gem.
|
31
|
+
- Media (Youtube, Spotify, etc.) support using [Jekyll Spaceship][jekyll-spaceship] gem.
|
32
|
+
- Diagram (PlantUML, Mermaid) support using [Jekyll Spaceship][jekyll-spaceship] gem.
|
33
|
+
- Google Translation support.
|
34
|
+
- New post tag support.
|
35
|
+
|
36
|
+
Also, visit the live [demo][yat-live-demo] site for the theme.
|
9
37
|
|
10
38
|
## Installation
|
11
39
|
|
@@ -31,11 +59,12 @@ Or install it yourself as:
|
|
31
59
|
|
32
60
|
## Usage
|
33
61
|
|
34
|
-
|
62
|
+
Add or update your available layouts, includes, sass and/or assets.
|
35
63
|
|
36
|
-
|
64
|
+
GitHub Pages runs in `safe` mode and only allows [a set of whitelisted plugins](https://pages.github.com/versions/).
|
65
|
+
To use the third-party gem in GitHub Pages without limitation:
|
37
66
|
|
38
|
-
|
67
|
+
* Here is a GitHub Action named [jekyll-deploy-action](https://github.com/jeffreytse/jekyll-deploy-action) for Jekyll site deployment conveniently. 👍
|
39
68
|
|
40
69
|
## Development
|
41
70
|
|
@@ -46,7 +75,22 @@ Your theme is setup just like a normal Jekyll site! To test your theme, run `bun
|
|
46
75
|
When your theme is released, only the files in `_data`, `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
47
76
|
To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-yat.gemspec` accordingly.
|
48
77
|
|
49
|
-
##
|
78
|
+
## Contributing
|
79
|
+
|
80
|
+
Issues and Pull Requests are greatly appreciated. If you've never contributed to an open source project before I'm more than happy to walk you through how to create a pull request.
|
50
81
|
|
51
|
-
|
82
|
+
You can start by [opening an issue](https://github.com/jeffreytse/jekyll-theme-yat/issues/new) describing the problem that you're looking to resolve and we'll go from there.
|
83
|
+
|
84
|
+
## License
|
52
85
|
|
86
|
+
This theme is licensed under the [MIT license](https://opensource.org/licenses/mit-license.php) © JeffreyTse.
|
87
|
+
|
88
|
+
<!-- External links -->
|
89
|
+
[jekyll]: https://jekyllrb.com/
|
90
|
+
[yat-git-repo]: https://github.com/jeffreytse/jekyll-theme-yat/
|
91
|
+
[yat-live-demo]: https://jeffreytse.github.io/jekyll-theme-yat/
|
92
|
+
[jekyll-spaceship]: https://github.com/jeffreytse/jekyll-spaceship
|
93
|
+
[jekyll-seo-tag]: https://github.com/jekyll/jekyll-seo-tag
|
94
|
+
[jekyll-sitemap]: https://github.com/jekyll/jekyll-sitemap
|
95
|
+
[jekyll-feed]: https://github.com/jekyll/jekyll-feed
|
96
|
+
[hilight-js]: https://github.com/highlightjs/highlight.js
|
data/_data/translate_langs.yml
CHANGED
@@ -13,10 +13,6 @@
|
|
13
13
|
img: https://www.countryflags.io/cn/flat/64.png
|
14
14
|
text: Chinese(Simple)
|
15
15
|
|
16
|
-
- lang: zh-TW
|
17
|
-
img: https://www.countryflags.io/tw/flat/64.png
|
18
|
-
text: Chinese(Traditional)
|
19
|
-
|
20
16
|
- lang: ja
|
21
17
|
img: https://www.countryflags.io/jp/flat/64.png
|
22
18
|
text: Japan
|
@@ -0,0 +1,41 @@
|
|
1
|
+
{% if include.article %}
|
2
|
+
{% assign article = include.article %}
|
3
|
+
{% endif %}
|
4
|
+
|
5
|
+
{% if include.speed %}
|
6
|
+
{% assign speed = include.speed %}
|
7
|
+
{% else %}
|
8
|
+
{% assign speed = 160 %}
|
9
|
+
{% endif %}
|
10
|
+
|
11
|
+
{% assign total_mins = article
|
12
|
+
| number_of_words
|
13
|
+
| divided_by: speed
|
14
|
+
| at_least: 1 %}
|
15
|
+
|
16
|
+
{% assign hours = total_mins | divided_by: 60 %}
|
17
|
+
{% assign mins = total_mins | modulo: 60 %}
|
18
|
+
|
19
|
+
{% assign return = "About" %}
|
20
|
+
|
21
|
+
{% if hours > 0 %}
|
22
|
+
{% assign unit = "hour" %}
|
23
|
+
{% if hours > 1 %}
|
24
|
+
{% assign unit = unit | append: "s" %}
|
25
|
+
{% endif %}
|
26
|
+
{% assign return = return
|
27
|
+
| append: " "
|
28
|
+
| append: hours
|
29
|
+
| append: " "
|
30
|
+
| append: unit %}
|
31
|
+
{% endif %}
|
32
|
+
|
33
|
+
{% assign unit = "min" %}
|
34
|
+
{% if mins > 1 %}
|
35
|
+
{% assign unit = unit | append: "s" %}
|
36
|
+
{% endif %}
|
37
|
+
{% assign return = return
|
38
|
+
| append: " "
|
39
|
+
| append: mins
|
40
|
+
| append: " "
|
41
|
+
| append: unit %}
|
data/_includes/head.html
CHANGED
@@ -6,10 +6,17 @@
|
|
6
6
|
{%- seo -%}
|
7
7
|
<link rel="shortcut icon" href="{{ site.favicon }}">
|
8
8
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
9
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/typeface-noto-sans@0.0.72/index.min.css">
|
10
|
+
<link rel="stylesheet"
|
11
|
+
href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/styles/default.min.css">
|
12
|
+
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/highlight.min.js"></script>
|
13
|
+
<!-- and it's easy to individually load additional languages -->
|
14
|
+
<script charset="UTF-8"
|
15
|
+
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/languages/go.min.js"></script>
|
9
16
|
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
|
10
17
|
<script src="{{ "/assets/js/main.js" | relative_url }}"></script>
|
11
18
|
{%- feed_meta -%}
|
12
19
|
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
13
|
-
|
20
|
+
{%- include extensions/google-analytics.html -%}
|
14
21
|
{%- endif -%}
|
15
22
|
</head>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
</style>
|
8
8
|
|
9
9
|
<div class="post-menu">
|
10
|
-
<div class="post-menu-title">
|
10
|
+
<div class="post-menu-title">TOC</div>
|
11
11
|
<div class="post-menu-content"></div>
|
12
12
|
</div>
|
13
13
|
|
@@ -36,10 +36,54 @@
|
|
36
36
|
// The header element
|
37
37
|
var header = document.querySelector('header.site-header');
|
38
38
|
|
39
|
+
function doMenuCollapse(index, over_items=20) {
|
40
|
+
var items = menuContent.firstChild.children;
|
41
|
+
|
42
|
+
if (items.length < over_items) {
|
43
|
+
return;
|
44
|
+
}
|
45
|
+
|
46
|
+
var activeItem = items[index];
|
47
|
+
var beginItem = activeItem
|
48
|
+
var endItem = activeItem
|
49
|
+
var beginIndex = index;
|
50
|
+
var endIndex = index + 1;
|
51
|
+
while (beginIndex >= 0
|
52
|
+
&& !items[beginIndex].classList.contains('h-h2')) {
|
53
|
+
beginIndex -= 1;
|
54
|
+
}
|
55
|
+
while (endIndex < items.length
|
56
|
+
&& !items[endIndex].classList.contains('h-h2')) {
|
57
|
+
endIndex += 1;
|
58
|
+
}
|
59
|
+
for (var i = 0; i < beginIndex; i++) {
|
60
|
+
item = items[i]
|
61
|
+
if (!item.classList.contains('h-h2')) {
|
62
|
+
item.style.display = 'none';
|
63
|
+
}
|
64
|
+
}
|
65
|
+
for (var i = beginIndex + 1; i < endIndex; i++) {
|
66
|
+
item = items[i]
|
67
|
+
// if (!item.classList.contains('h-h2')) {
|
68
|
+
item.style.display = '';
|
69
|
+
// }
|
70
|
+
}
|
71
|
+
for (var i = endIndex; i < items.length; i++) {
|
72
|
+
item = items[i]
|
73
|
+
if (!item.classList.contains('h-h2')) {
|
74
|
+
item.style.display = 'none';
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
// Init menu collapsed
|
80
|
+
doMenuCollapse(-1);
|
81
|
+
|
39
82
|
// Active the menu item
|
40
83
|
window.addEventListener('scroll', function (event) {
|
41
84
|
var lastActive = menuContent.querySelector('.active');
|
42
85
|
var changed = true;
|
86
|
+
var activeIndex = -1;
|
43
87
|
for (var i = headings.length - 1; i >= 0; i--) {
|
44
88
|
var h = headings[i];
|
45
89
|
var headingRect = h.getBoundingClientRect();
|
@@ -49,9 +93,11 @@
|
|
49
93
|
var headerHeight = headerTop + headerHeight + 20;
|
50
94
|
if (headingRect.top <= headerHeight) {
|
51
95
|
var id = 'h-' + h.getAttribute('id');
|
52
|
-
var
|
96
|
+
var a = menuContent.querySelector('a[href="#' + id + '"]');
|
97
|
+
var curActive = a.parentNode;
|
53
98
|
if (curActive) {
|
54
99
|
curActive.classList.add('active');
|
100
|
+
activeIndex = i;
|
55
101
|
}
|
56
102
|
if (lastActive == curActive) {
|
57
103
|
changed = false;
|
@@ -59,8 +105,11 @@
|
|
59
105
|
break;
|
60
106
|
}
|
61
107
|
}
|
62
|
-
if (
|
63
|
-
lastActive
|
108
|
+
if (changed) {
|
109
|
+
if (lastActive) {
|
110
|
+
lastActive.classList.remove('active');
|
111
|
+
}
|
112
|
+
doMenuCollapse(activeIndex);
|
64
113
|
}
|
65
114
|
event.preventDefault();
|
66
115
|
});
|
data/_includes/views/banner.html
CHANGED
@@ -19,20 +19,9 @@
|
|
19
19
|
{% assign subheading = return %}
|
20
20
|
|
21
21
|
{% if banner %}
|
22
|
-
|
23
|
-
{% assign auto_banner = true %}
|
24
|
-
{% assign array = banner | split: '/' %}
|
25
|
-
{% assign protocol = array[0] %}
|
26
|
-
|
27
|
-
{% if array.size > 1 and (protocol == '' or protocol == 'http:' or protocol == 'https:') %}
|
28
|
-
{% assign auto_banner = false %}
|
29
|
-
{% endif %}
|
30
|
-
|
31
22
|
<section class="page-banner">
|
32
23
|
<div class="page-banner-img">
|
33
|
-
{
|
34
|
-
<div style="background-image: url({{ banner }})"></div>
|
35
|
-
{%- endif -%}
|
24
|
+
<div style="background-image: url({{ banner | relative_url }})"></div>
|
36
25
|
</div>
|
37
26
|
<div class="wrapper">
|
38
27
|
<div class="page-banner-inner">
|
@@ -48,36 +37,14 @@
|
|
48
37
|
<h1 class="page-banner-heading">
|
49
38
|
{{ heading | default: page.title | escape }}
|
50
39
|
</h1>
|
51
|
-
<
|
40
|
+
<h2 class="page-banner-subheading">
|
52
41
|
{{ subheading | default: page.subtitle | escape }}
|
53
|
-
</
|
42
|
+
</h2>
|
54
43
|
</div>
|
55
44
|
|
56
45
|
{%- endif -%}
|
57
46
|
</div>
|
58
47
|
</div>
|
59
48
|
</section>
|
60
|
-
|
61
|
-
{%- if auto_banner -%}
|
62
|
-
|
63
|
-
{%- assign selector = ".page-banner-img" -%}
|
64
|
-
|
65
|
-
{%- if banner == "default" -%}
|
66
|
-
|
67
|
-
{%- assign heading = page.heading | default: page.title | escape -%}
|
68
|
-
{%- assign subheading = page.subheading | default: page.subtitle | escape -%}
|
69
|
-
{%- assign seed = page.date | append: heading | append: subheading -%}
|
70
|
-
|
71
|
-
{%- else -%}
|
72
|
-
|
73
|
-
{%- assign seed = 'theme-' | append: banner -%}
|
74
|
-
|
75
|
-
{%- endif -%}
|
76
|
-
|
77
|
-
{%- assign zoom = 1.5 -%}
|
78
|
-
{%- include extensions/trianglify.html -%}
|
79
|
-
|
80
|
-
{%- endif -%}
|
81
|
-
|
82
49
|
{%- endif -%}
|
83
50
|
|
data/_includes/views/header.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
{%- include functions.html func='log' level='debug' msg='Get header_transparent value' -%}
|
8
8
|
{% assign name = 'header_transparent' %}
|
9
9
|
{%- include functions.html func='get_value' -%}
|
10
|
-
{% assign header_transparent = return %}
|
10
|
+
{% assign header_transparent = return | default: true %}
|
11
11
|
|
12
12
|
{%- if banner and header_transparent -%}
|
13
13
|
{%- assign header_transparent_class = "site-header-transparent" -%}
|
@@ -39,9 +39,7 @@
|
|
39
39
|
{%- for path in page_paths -%}
|
40
40
|
{%- assign my_page = site.pages | where: "path", path | first -%}
|
41
41
|
{%- if my_page.title -%}
|
42
|
-
<a class="page-link" href="{{ my_page.url | relative_url }}">
|
43
|
-
{{ my_page.title | upcase | escape }}
|
44
|
-
</a>
|
42
|
+
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | upcase | escape }}</a>
|
45
43
|
{%- endif -%}
|
46
44
|
{%- endfor -%}
|
47
45
|
|
@@ -11,16 +11,29 @@
|
|
11
11
|
{%- for post in paginator.posts -%}
|
12
12
|
<li>
|
13
13
|
{%- assign date_format = site.yat.date_format | default: "%b %-d, %Y" -%}
|
14
|
-
|
15
|
-
|
14
|
+
|
15
|
+
{% assign article = post.content %}
|
16
|
+
{%- include functions.html func='get_reading_time' -%}
|
17
|
+
{% assign reading_time = return %}
|
18
|
+
|
19
|
+
<h2 class="post-title">
|
16
20
|
{%- assign post_url = post.url | relative_url -%}
|
17
21
|
<a class="post-link" href="{{ post_url }}">
|
18
22
|
{{ post.title | escape }}
|
19
23
|
</a>
|
20
|
-
</
|
24
|
+
</h2>
|
25
|
+
<div class="post-meta">
|
26
|
+
<span class="post-date"><i class="fa fa-calendar"></i> {{ post.date | date: date_format }}</span>
|
27
|
+
<span class="post-reading-time left-vsplit"><i class="fa fa-clock-o"></i> {{ reading_time }}</span>
|
28
|
+
</div>
|
21
29
|
<p class="post-excerpt">
|
22
30
|
{{ post.content | strip_html | truncatewords: 50 }}
|
23
31
|
</p>
|
32
|
+
<div class="post-tags">
|
33
|
+
{%- for tag in post.tags -%}
|
34
|
+
<a class="post-tag" href="/tags.html#{{tag}}">#{{tag}}</a>
|
35
|
+
{%- endfor -%}
|
36
|
+
</div>
|
24
37
|
</li>
|
25
38
|
{%- endfor -%}
|
26
39
|
</ul>
|
@@ -3,19 +3,23 @@
|
|
3
3
|
{% endif %}
|
4
4
|
|
5
5
|
{% if paginator.posts.size > 0 %}
|
6
|
-
<div class="
|
6
|
+
<div class="paginator">
|
7
|
+
<span class="previous">
|
7
8
|
{% if paginator.previous_page %}
|
8
|
-
<a href="{{ paginator.previous_page_path }}"
|
9
|
+
<a href="{{ paginator.previous_page_path }}">Prev</a>
|
9
10
|
{% else %}
|
10
|
-
<span
|
11
|
+
<span>Prev</span>
|
11
12
|
{% endif %}
|
13
|
+
</span>
|
12
14
|
|
13
|
-
<span> {{ paginator.page }}/{{ paginator.total_pages }}</span>
|
15
|
+
<span class="indicator"> {{ paginator.page }}/{{ paginator.total_pages }}</span>
|
14
16
|
|
17
|
+
<span class="next">
|
15
18
|
{% if paginator.next_page %}
|
16
|
-
<a href="{{ paginator.next_page_path }}">Next
|
19
|
+
<a href="{{ paginator.next_page_path }}">Next</a>
|
17
20
|
{% else %}
|
18
|
-
<span>Next
|
21
|
+
<span>Next</span>
|
19
22
|
{% endif %}
|
23
|
+
</span>
|
20
24
|
</div>
|
21
25
|
{% endif %}
|
@@ -1,11 +1,25 @@
|
|
1
1
|
<header class="post-header">
|
2
2
|
<h1 class="post-title p-name" itemprop="name headline">{{ heading | default: page.title | escape }}</h1>
|
3
|
-
<h3>{{ subheading | default: page.subtitle | escape }}</h3>
|
3
|
+
<h3 class="post-subtitle">{{ subheading | default: page.subtitle | escape }}</h3>
|
4
4
|
|
5
5
|
<p class="post-meta">
|
6
6
|
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
7
7
|
{%- assign date_format = site.yat.date_format | default: "%b %-d, %Y" -%}
|
8
|
-
{{ page.date | date: date_format }}
|
8
|
+
<i class="fa fa-calendar"></i> {{ page.date | date: date_format }}
|
9
9
|
</time>
|
10
|
+
|
11
|
+
{% assign article = page.content %}
|
12
|
+
{%- include functions.html func='get_reading_time' -%}
|
13
|
+
{% assign reading_time = return %}
|
14
|
+
<span class="post-reading-time left-vsplit"><i class="fa fa-clock-o"></i> {{ reading_time }}</span>
|
10
15
|
</p>
|
16
|
+
|
17
|
+
{%- if page.tags.size > 0 -%}
|
18
|
+
<div class="post-tags">
|
19
|
+
{%- for tag in page.tags -%}
|
20
|
+
<a class="post-tag" href="/tags.html#{{tag}}">#{{tag}}</a>
|
21
|
+
{%- endfor -%}
|
22
|
+
</div>
|
23
|
+
{%- endif -%}
|
24
|
+
|
11
25
|
</header>
|
data/_layouts/about.html
ADDED
data/_layouts/post.html
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
---
|
2
2
|
layout: framework
|
3
|
-
banner:
|
3
|
+
banner:
|
4
4
|
banner_html: post-header.html
|
5
|
+
hidden: []
|
5
6
|
sidebar:
|
6
7
|
- article-menu
|
7
8
|
---
|
@@ -13,39 +14,64 @@ sidebar:
|
|
13
14
|
{%- include functions.html func='get_value' -%}
|
14
15
|
{%- assign banner = return -%}
|
15
16
|
|
16
|
-
{%-
|
17
|
+
{%- assign name = 'hidden' -%}
|
18
|
+
{%- include functions.html func='get_value' -%}
|
19
|
+
{%- assign hidden = return -%}
|
20
|
+
|
21
|
+
{%- assign result = hidden | where_exp: "item", "item == 'header'" -%}
|
22
|
+
{%- if banner == nil and result.size == 0 -%}
|
17
23
|
{%- include views/post-header.html -%}
|
18
24
|
{%- endif -%}
|
19
25
|
|
20
26
|
{%- include views/article.html -%}
|
21
27
|
|
28
|
+
{%- assign result = hidden | where_exp: "item", "item == 'navigator'" -%}
|
29
|
+
{%- if result.size == 0 -%}
|
22
30
|
<div class="post-nav">
|
23
31
|
{%- if page.previous -%}
|
24
|
-
|
32
|
+
<a class="previous" href="{{ page.previous.url }}" title="{{
|
33
|
+
page.previous.title | escape }}">{{ page.previous.title | escape | truncatewords: 6 }}</a>
|
25
34
|
{%- else -%}
|
26
35
|
<span></span>
|
27
36
|
{%- endif -%}
|
28
37
|
|
29
38
|
{%- if page.next -%}
|
30
|
-
|
39
|
+
<a class="next" href="{{ page.next.url }}" title="{{ page.next.title | escape }}">{{ page.next.title | escape | truncatewords: 6 }}</a>
|
31
40
|
{%- else -%}
|
32
41
|
<span></span>
|
33
42
|
{%- endif -%}
|
34
43
|
</div>
|
35
|
-
|
36
|
-
{%- if page.comments != false -%}
|
37
|
-
|
38
|
-
{%- if site.disqus.shortname -%}
|
39
|
-
{%- include extensions/comments/disqus.html -%}
|
40
44
|
{%- endif -%}
|
41
45
|
|
42
|
-
{%-
|
43
|
-
{%-
|
46
|
+
{%- assign result = hidden | where_exp: "item", "item == 'related_posts'" -%}
|
47
|
+
{%- if result.size == 0 -%}
|
48
|
+
<div class="post-related">
|
49
|
+
<div>Related Articles</div>
|
50
|
+
<ul>
|
51
|
+
{% assign posts = site[page.collection] | sample:4 %}
|
52
|
+
{%- for post in posts -%}
|
53
|
+
<li><a class="post-link" href="{{post.url}}" title="{{ page.next.title | escape }}">{{ post.title | escape | truncatewords: 12 }}</a></li>
|
54
|
+
{%- endfor -%}
|
55
|
+
</ul>
|
56
|
+
</div>
|
44
57
|
{%- endif -%}
|
45
58
|
|
59
|
+
{%- assign result = hidden | where_exp: "item", "item == 'comments'" -%}
|
60
|
+
{%- if result.size == 0 -%}
|
61
|
+
<div class="post-comments">
|
62
|
+
{%- if page.comments != false -%}
|
63
|
+
|
64
|
+
{%- if site.disqus.shortname -%}
|
65
|
+
{%- include extensions/comments/disqus.html -%}
|
66
|
+
{%- endif -%}
|
67
|
+
|
68
|
+
{%- if site.gitment.username -%}
|
69
|
+
{%- include extensions/comments/gitment.html -%}
|
70
|
+
{%- endif -%}
|
71
|
+
|
72
|
+
{%- endif -%}
|
73
|
+
</div>
|
46
74
|
{%- endif -%}
|
47
75
|
|
48
76
|
</section>
|
49
77
|
</div>
|
50
|
-
|
51
|
-
|