steve-for-jekyll 1.0.1 → 1.1.2
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/404.html +9 -0
- data/LICENSE.txt +21 -21
- data/README.md +61 -21
- data/_config.yml +96 -70
- data/_includes/blog/custom-widgets.html +3 -3
- data/_includes/blog/post.html +14 -0
- data/_includes/blog/sidebar.html +42 -42
- data/_includes/footer.html +11 -11
- data/_includes/footer/custom-text.html +5 -5
- data/_includes/header.html +17 -17
- data/_includes/header/menu.html +12 -12
- data/_includes/post/comment-form.html +69 -0
- data/_includes/post/comments.html +47 -0
- data/_includes/search-form.html +13 -13
- data/_layouts/archive.html +21 -21
- data/_layouts/default.html +18 -18
- data/_layouts/home.html +23 -23
- data/_layouts/page.html +15 -15
- data/_layouts/post.html +115 -92
- data/_sass/{steve.scss → steve-for-jekyll.scss} +51 -51
- data/_sass/steve/_base.scss +237 -249
- data/_sass/steve/_layout.scss +472 -397
- data/assets/css/screen.scss +34 -34
- data/assets/js/responsive-videos.js +79 -79
- data/staticman.yml +30 -0
- metadata +11 -7
data/_includes/footer.html
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
<footer class="colophon">
|
2
|
-
<div class="site-info">
|
3
|
-
<h5>
|
4
|
-
<a href="{{ site.url }}">{{ site.title }}</a>
|
5
|
-
</h5>
|
6
|
-
|
7
|
-
{% include footer/custom-text.html %}
|
8
|
-
</div>
|
9
|
-
|
10
|
-
{% include footer/links.html %}
|
11
|
-
</footer>
|
1
|
+
<footer class="colophon">
|
2
|
+
<div class="site-info">
|
3
|
+
<h5>
|
4
|
+
<a href="{{ site.url }}">{{ site.title }}</a>
|
5
|
+
</h5>
|
6
|
+
|
7
|
+
{% include footer/custom-text.html %}
|
8
|
+
</div>
|
9
|
+
|
10
|
+
{% include footer/links.html %}
|
11
|
+
</footer>
|
@@ -1,5 +1,5 @@
|
|
1
|
-
{% comment %}
|
2
|
-
Create a file like this and add your own custom content that should be shown at the bottom of your website.
|
3
|
-
{% endcomment %}
|
4
|
-
|
5
|
-
{{ site.description }}
|
1
|
+
{% comment %}
|
2
|
+
Create a file like this and add your own custom content that should be shown at the bottom of your website.
|
3
|
+
{% endcomment %}
|
4
|
+
|
5
|
+
{{ site.description }}
|
data/_includes/header.html
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
{% capture site_branding %}
|
2
|
-
<a href="{{ "/" | relative_url }}">
|
3
|
-
{% if site.logo %}
|
4
|
-
<img class="logo" src="{{ site.logo }}" alt="{{ site.title }}" />
|
5
|
-
{% else %}
|
6
|
-
{{ site.title }}
|
7
|
-
{% endif %}
|
8
|
-
</a>
|
9
|
-
{% endcapture %}
|
10
|
-
|
11
|
-
<header class="masthead">
|
12
|
-
{% if page.title %}
|
13
|
-
<p class="site-title">{{ site_branding }}</p>
|
14
|
-
{% else %}
|
15
|
-
<h1 class="site-title">{{ site_branding }}</h1>
|
16
|
-
{% endif %} {% include header/menu.html %}
|
17
|
-
</header>
|
1
|
+
{% capture site_branding %}
|
2
|
+
<a href="{{ "/" | relative_url }}">
|
3
|
+
{% if site.logo %}
|
4
|
+
<img class="logo" src="{{ site.logo }}" alt="{{ site.title }}" />
|
5
|
+
{% else %}
|
6
|
+
{{ site.title }}
|
7
|
+
{% endif %}
|
8
|
+
</a>
|
9
|
+
{% endcapture %}
|
10
|
+
|
11
|
+
<header class="masthead">
|
12
|
+
{% if page.title %}
|
13
|
+
<p class="site-title">{{ site_branding }}</p>
|
14
|
+
{% else %}
|
15
|
+
<h1 class="site-title">{{ site_branding }}</h1>
|
16
|
+
{% endif %} {% include header/menu.html %}
|
17
|
+
</header>
|
data/_includes/header/menu.html
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
{% if site.data.menu %}
|
2
|
-
<nav class="site-menu">
|
3
|
-
{% for item in site.data.menu %}
|
4
|
-
<a class="menu-item" href="{{ item.url }}"
|
5
|
-
{% if item.external %} rel="external" {% endif %}
|
6
|
-
{% if item.color %} style="background-color: {{ item.color }}" {% endif %}
|
7
|
-
>
|
8
|
-
{{ item.title }}
|
9
|
-
</a>
|
10
|
-
{% endfor %}
|
11
|
-
</nav>
|
12
|
-
{% endif %}
|
1
|
+
{% if site.data.menu %}
|
2
|
+
<nav class="site-menu">
|
3
|
+
{% for item in site.data.menu %}
|
4
|
+
<a class="menu-item" href="{{ item.url }}"
|
5
|
+
{% if item.external %} rel="external" {% endif %}
|
6
|
+
{% if item.color %} style="background-color: {{ item.color }}" {% endif %}
|
7
|
+
>
|
8
|
+
{{ item.title }}
|
9
|
+
</a>
|
10
|
+
{% endfor %}
|
11
|
+
</nav>
|
12
|
+
{% endif %}
|
@@ -0,0 +1,69 @@
|
|
1
|
+
<form action="{{ site.comments.staticman_endpoint }}" method="post">
|
2
|
+
<h3 class="form-title">{{ site.comments.form_title }}</h3>
|
3
|
+
|
4
|
+
<div class="comments-notice">
|
5
|
+
{{ site.comments.notice | markdownify }}
|
6
|
+
</div>
|
7
|
+
|
8
|
+
<div class="comment-message-area">
|
9
|
+
<label for="comment_message" class="visually-hidden">
|
10
|
+
{{ site.comments.fields.message.label }}
|
11
|
+
</label>
|
12
|
+
|
13
|
+
<textarea
|
14
|
+
id="comment_message"
|
15
|
+
class="message-area"
|
16
|
+
name="fields[message]"
|
17
|
+
placeholder="{{ site.comments.fields.message.placeholder }}"
|
18
|
+
required
|
19
|
+
></textarea>
|
20
|
+
</div>
|
21
|
+
|
22
|
+
<div class="comment-fields">
|
23
|
+
<label for="comment_name" class="visually-hidden">
|
24
|
+
{{ site.comments.fields.name.label }}
|
25
|
+
</label>
|
26
|
+
|
27
|
+
<input
|
28
|
+
type="text"
|
29
|
+
id="comment_name"
|
30
|
+
class="comment-field"
|
31
|
+
name="fields[name]"
|
32
|
+
placeholder="{{ site.comments.fields.name.placeholder }}"
|
33
|
+
required
|
34
|
+
/>
|
35
|
+
|
36
|
+
<label for="comment_email" class="visually-hidden">
|
37
|
+
{{ site.comments.fields.email.label }}
|
38
|
+
</label>
|
39
|
+
<input
|
40
|
+
type="email"
|
41
|
+
id="comment_email"
|
42
|
+
class="comment-field"
|
43
|
+
name="fields[email]"
|
44
|
+
placeholder="{{ site.comments.fields.email.placeholder }}"
|
45
|
+
required
|
46
|
+
/>
|
47
|
+
|
48
|
+
<label for="comment_website" class="visually-hidden">
|
49
|
+
{{ site.comments.fields.website.label }}
|
50
|
+
</label>
|
51
|
+
<input
|
52
|
+
type="url"
|
53
|
+
id="comment_website"
|
54
|
+
class="comment-field"
|
55
|
+
name="fields[website]"
|
56
|
+
placeholder="{{ site.comments.fields.website.placeholder }}"
|
57
|
+
/>
|
58
|
+
</div>
|
59
|
+
|
60
|
+
<div class="comment-actions">
|
61
|
+
<button class="form-submit" type="submit">
|
62
|
+
{{ site.comments.fields.submit }}
|
63
|
+
</button>
|
64
|
+
</div>
|
65
|
+
|
66
|
+
<input type="hidden" name="options[redirect]" value="{{ page.url |
|
67
|
+
absolute_url }}#comments" />
|
68
|
+
<input type="hidden" name="options[slug]" value="{{ page.slug }}" />
|
69
|
+
</form>
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{% if site.data.comments[page.slug] or page.comments != false %}
|
2
|
+
<section id="comments" class="content">
|
3
|
+
<h2 class="comments-title">
|
4
|
+
{{ site.comments.title }}
|
5
|
+
</h2>
|
6
|
+
|
7
|
+
{% if site.data.comments[page.slug] %}
|
8
|
+
<ol class="comments-list">
|
9
|
+
|
10
|
+
{% assign comments = site.data.comments[page.slug] | sort: date %}
|
11
|
+
|
12
|
+
{% for comment_object in site.data.comments[page.slug] %}
|
13
|
+
|
14
|
+
{% assign comment = comment_object | last %}
|
15
|
+
|
16
|
+
<li class="comment-item">
|
17
|
+
<section class="comment">
|
18
|
+
<header class="comment-meta">
|
19
|
+
<img class="author-avatar" src="//www.gravatar.com/avatar/{{ comment.email }}?d=monsterid&s=64" alt="" />
|
20
|
+
<h5 class="author">
|
21
|
+
{% if comment.website %}
|
22
|
+
<a href="{{ comment.website }}" rel="author">
|
23
|
+
{{ comment.name }}
|
24
|
+
</a>
|
25
|
+
{% else %}
|
26
|
+
{{ comment.name }}
|
27
|
+
{% endif %}
|
28
|
+
</h5>
|
29
|
+
|
30
|
+
<time class="comment-date">
|
31
|
+
{{ comment.date | date: site.comments.date_format }}
|
32
|
+
</time>
|
33
|
+
</header>
|
34
|
+
|
35
|
+
<div class="comment-body">
|
36
|
+
{{ comment.message | markdownify }}
|
37
|
+
</div>
|
38
|
+
</section>
|
39
|
+
</li>
|
40
|
+
{% endfor %}
|
41
|
+
|
42
|
+
</ol>
|
43
|
+
{% endif %}
|
44
|
+
|
45
|
+
{% include post/comment-form.html %}
|
46
|
+
</section>
|
47
|
+
{% endif %}
|
data/_includes/search-form.html
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
<form action="//duckduckgo.com" method="get" {% if include.class %}class="{{ include.class }}"{% endif %}>
|
2
|
-
<label for="search_terms">{{ site.steve.search.label }}</label>
|
3
|
-
|
4
|
-
<div class="search-controls">
|
5
|
-
|
6
|
-
<input id="search_terms" placeholder="{{ site.steve.search.placeholder }}" type="search" name="q" required />
|
7
|
-
<input type="hidden" name="sites" value="{{ site.url | remove: 'https://' }}" />
|
8
|
-
<button type="submit">
|
9
|
-
{{ site.steve.search.submit }}
|
10
|
-
</button>
|
11
|
-
|
12
|
-
</div>
|
13
|
-
</form>
|
1
|
+
<form action="//duckduckgo.com" method="get" {% if include.class %}class="{{ include.class }}"{% endif %}>
|
2
|
+
<label for="search_terms">{{ site.steve.search.label }}</label>
|
3
|
+
|
4
|
+
<div class="search-controls">
|
5
|
+
|
6
|
+
<input id="search_terms" placeholder="{{ site.steve.search.placeholder }}" type="search" name="q" required />
|
7
|
+
<input type="hidden" name="sites" value="{{ site.url | remove: 'https://' }}" />
|
8
|
+
<button type="submit">
|
9
|
+
{{ site.steve.search.submit }}
|
10
|
+
</button>
|
11
|
+
|
12
|
+
</div>
|
13
|
+
</form>
|
data/_layouts/archive.html
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
---
|
2
|
-
layout: blog
|
3
|
-
---
|
4
|
-
|
5
|
-
<header class="archive-header">
|
6
|
-
{% if page.date %}
|
7
|
-
<h1>
|
8
|
-
{{ site.steve.archives.date }}<br />
|
9
|
-
<strong>{{ page.date | date: site.steve.date_formats.archives[page.type] }}</strong>
|
10
|
-
</h1>
|
11
|
-
{% else %}
|
12
|
-
<h1>
|
13
|
-
{{ site.steve.archives[page.type] }}<br />
|
14
|
-
<strong>{{ page.title }}</strong>
|
15
|
-
</h1>
|
16
|
-
{% endif %}
|
17
|
-
</header>
|
18
|
-
|
19
|
-
{% for post in page.posts %}
|
20
|
-
{% include blog/post.html full_post=false %}
|
21
|
-
{% endfor %}
|
1
|
+
---
|
2
|
+
layout: blog
|
3
|
+
---
|
4
|
+
|
5
|
+
<header class="archive-header">
|
6
|
+
{% if page.date %}
|
7
|
+
<h1>
|
8
|
+
{{ site.steve.archives.date }}<br />
|
9
|
+
<strong>{{ page.date | date: site.steve.date_formats.archives[page.type] }}</strong>
|
10
|
+
</h1>
|
11
|
+
{% else %}
|
12
|
+
<h1>
|
13
|
+
{{ site.steve.archives[page.type] }}<br />
|
14
|
+
<strong>{{ page.title }}</strong>
|
15
|
+
</h1>
|
16
|
+
{% endif %}
|
17
|
+
</header>
|
18
|
+
|
19
|
+
{% for post in page.posts %}
|
20
|
+
{% include blog/post.html full_post=false %}
|
21
|
+
{% endfor %}
|
data/_layouts/default.html
CHANGED
@@ -1,18 +1,18 @@
|
|
1
|
-
<!doctype html>
|
2
|
-
<html lang="{{ page.lang | default: site.lang }}">
|
3
|
-
{% include head.html %}
|
4
|
-
|
5
|
-
<body class="{{ page.layout | prepend: 'layout-' }}">
|
6
|
-
{% include header.html %}
|
7
|
-
|
8
|
-
<main class="container">
|
9
|
-
{{ content }}
|
10
|
-
</main>
|
11
|
-
|
12
|
-
{% include footer.html %}
|
13
|
-
|
14
|
-
{% if content contains "iframe" %}
|
15
|
-
<script src="{% link assets/js/responsive-videos.js %}"></script>
|
16
|
-
{% endif %}
|
17
|
-
</body>
|
18
|
-
</html>
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="{{ page.lang | default: site.lang }}">
|
3
|
+
{% include head.html %}
|
4
|
+
|
5
|
+
<body class="{{ page.layout | prepend: 'layout-' }}">
|
6
|
+
{% include header.html %}
|
7
|
+
|
8
|
+
<main class="container">
|
9
|
+
{{ content }}
|
10
|
+
</main>
|
11
|
+
|
12
|
+
{% include footer.html %}
|
13
|
+
|
14
|
+
{% if content contains "iframe" %}
|
15
|
+
<script src="{% link assets/js/responsive-videos.js %}"></script>
|
16
|
+
{% endif %}
|
17
|
+
</body>
|
18
|
+
</html>
|
data/_layouts/home.html
CHANGED
@@ -1,23 +1,23 @@
|
|
1
|
-
---
|
2
|
-
layout: blog
|
3
|
-
---
|
4
|
-
|
5
|
-
{% for post in paginator.posts %}
|
6
|
-
{% include blog/post.html %}
|
7
|
-
{% endfor %}
|
8
|
-
|
9
|
-
{% if paginator.total_pages > 1 %}
|
10
|
-
<nav class="content-navigation">
|
11
|
-
{% if paginator.previous_page %}
|
12
|
-
<a class="nav-link prev-link" href="{{ paginator.previous_page_path | relative_url }}" rel="prev">
|
13
|
-
{{ site.steve.pagination.next_page }}
|
14
|
-
</a>
|
15
|
-
{% endif %}
|
16
|
-
|
17
|
-
{% if paginator.next_page %}
|
18
|
-
<a class="nav-link next-link" href="{{ paginator.next_page_path | relative_url }}" rel="next">
|
19
|
-
{{ site.steve.pagination.prev_page }}
|
20
|
-
</a>
|
21
|
-
{% endif %}
|
22
|
-
</nav>
|
23
|
-
{% endif %}
|
1
|
+
---
|
2
|
+
layout: blog
|
3
|
+
---
|
4
|
+
|
5
|
+
{% for post in paginator.posts %}
|
6
|
+
{% include blog/post.html %}
|
7
|
+
{% endfor %}
|
8
|
+
|
9
|
+
{% if paginator.total_pages > 1 %}
|
10
|
+
<nav class="content-navigation">
|
11
|
+
{% if paginator.previous_page %}
|
12
|
+
<a class="nav-link prev-link" href="{{ paginator.previous_page_path | relative_url }}" rel="prev">
|
13
|
+
{{ site.steve.pagination.next_page }}
|
14
|
+
</a>
|
15
|
+
{% endif %}
|
16
|
+
|
17
|
+
{% if paginator.next_page %}
|
18
|
+
<a class="nav-link next-link" href="{{ paginator.next_page_path | relative_url }}" rel="next">
|
19
|
+
{{ site.steve.pagination.prev_page }}
|
20
|
+
</a>
|
21
|
+
{% endif %}
|
22
|
+
</nav>
|
23
|
+
{% endif %}
|
data/_layouts/page.html
CHANGED
@@ -1,15 +1,15 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
|
5
|
-
<article class="content page">
|
6
|
-
<header class="content-header">
|
7
|
-
<h1 class="content-title">
|
8
|
-
{{ page.title }}
|
9
|
-
</h1>
|
10
|
-
</header>
|
11
|
-
|
12
|
-
<div class="content-body">
|
13
|
-
{{ content }}
|
14
|
-
</div>
|
15
|
-
</article>
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<article class="content page">
|
6
|
+
<header class="content-header">
|
7
|
+
<h1 class="content-title">
|
8
|
+
{{ page.title }}
|
9
|
+
</h1>
|
10
|
+
</header>
|
11
|
+
|
12
|
+
<div class="content-body">
|
13
|
+
{{ content }}
|
14
|
+
</div>
|
15
|
+
</article>
|
data/_layouts/post.html
CHANGED
@@ -1,92 +1,115 @@
|
|
1
|
-
---
|
2
|
-
layout: blog
|
3
|
-
---
|
4
|
-
|
5
|
-
<article class="content post">
|
6
|
-
<header class="content-header">
|
7
|
-
{% if page.
|
8
|
-
<
|
9
|
-
{
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
{{ page.
|
17
|
-
</
|
18
|
-
</
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
{
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
{%
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
</
|
64
|
-
|
65
|
-
{% if
|
66
|
-
|
67
|
-
<
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
1
|
+
---
|
2
|
+
layout: blog
|
3
|
+
---
|
4
|
+
|
5
|
+
<article class="content post">
|
6
|
+
<header class="content-header">
|
7
|
+
{% if page.category %}
|
8
|
+
<div class="content-meta">
|
9
|
+
{%- assign category_slug = page.category | slugify -%}
|
10
|
+
{%- assign category_url = site.jekyll-archives.permalinks.category -%}
|
11
|
+
|
12
|
+
<a
|
13
|
+
href="{{ category_url | replace: ':name', category_slug | relative_url }}"
|
14
|
+
rel="tag"
|
15
|
+
>
|
16
|
+
{{- page.category -}}
|
17
|
+
</a>
|
18
|
+
</div>
|
19
|
+
{% endif %}
|
20
|
+
|
21
|
+
{% if page.title != "" %}
|
22
|
+
<h1 class="content-title">{{ page.title }}</h1>
|
23
|
+
{% endif %}
|
24
|
+
|
25
|
+
<div class="content-meta">
|
26
|
+
<a class="content-date" href="{{ page.url }}" rel="bookmark">
|
27
|
+
<time datetime="{{ page.date | date_to_xmlschema }}">
|
28
|
+
{{ page.date | date: site.steve.date_formats.post }}
|
29
|
+
</time>
|
30
|
+
</a>
|
31
|
+
|
32
|
+
{% if page.author %}
|
33
|
+
{% assign author = site.data.authors[page.author] %}
|
34
|
+
|
35
|
+
{% if author.url %}
|
36
|
+
<a class="content-author" href="{{ author.url }}" rel="author">
|
37
|
+
{{ author.name }}
|
38
|
+
</a>
|
39
|
+
{% else %}
|
40
|
+
<a
|
41
|
+
class="content-author"
|
42
|
+
href="{{ page.author | prepend: 'https://twitter.com/' }}"
|
43
|
+
rel="author"
|
44
|
+
>
|
45
|
+
{{ page.author }}
|
46
|
+
</a>
|
47
|
+
{% endif %}
|
48
|
+
{% endif %}
|
49
|
+
</div>
|
50
|
+
</header>
|
51
|
+
|
52
|
+
{% if page.image %}
|
53
|
+
<figure class="content-cover">
|
54
|
+
<img
|
55
|
+
src="{{ page.image.url | default: page.image }}"
|
56
|
+
alt="{{ page.image.alt | default: '' }}"
|
57
|
+
/>
|
58
|
+
</figure>
|
59
|
+
{% endif %}
|
60
|
+
|
61
|
+
<div class="content-body">
|
62
|
+
{{ page.content }}
|
63
|
+
</div>
|
64
|
+
|
65
|
+
{% if page.tags.size > 0 %}
|
66
|
+
<footer class="content-footer">
|
67
|
+
<p>{{ site.steve.post.tags }}</p>
|
68
|
+
|
69
|
+
<ul class="content-tags">
|
70
|
+
{% for tag in page.tags %}
|
71
|
+
<li>
|
72
|
+
{%- assign tag_slug = tag | slugify -%}
|
73
|
+
{%- assign tag_url = site.jekyll-archives.permalinks.tag -%}
|
74
|
+
|
75
|
+
<a
|
76
|
+
href="{{ tag_url | replace: ':name', tag_slug | relative_url }}"
|
77
|
+
rel="tag"
|
78
|
+
>
|
79
|
+
{{- tag -}}
|
80
|
+
</a>
|
81
|
+
</li>
|
82
|
+
{% endfor %}
|
83
|
+
</ul>
|
84
|
+
</footer>
|
85
|
+
{% endif %}
|
86
|
+
</article>
|
87
|
+
|
88
|
+
{% include post/comments.html %}
|
89
|
+
|
90
|
+
{% if page.previous or page.next %}
|
91
|
+
<nav class="content-navigation">
|
92
|
+
{% if page.previous %}
|
93
|
+
<a
|
94
|
+
class="nav-link prev-link"
|
95
|
+
href="{{ page.previous.url | relative_url }}"
|
96
|
+
rel="prev"
|
97
|
+
>
|
98
|
+
{{ site.steve.pagination.prev_post }}
|
99
|
+
|
100
|
+
<strong>{{ page.previous.title }}</strong>
|
101
|
+
</a>
|
102
|
+
{% endif %}
|
103
|
+
{% if page.next %}
|
104
|
+
<a
|
105
|
+
class="nav-link next-link"
|
106
|
+
href="{{ page.next.url | relative_url }}"
|
107
|
+
rel="next"
|
108
|
+
>
|
109
|
+
{{ site.steve.pagination.next_post }}
|
110
|
+
|
111
|
+
<strong>{{ page.next.title }}</strong>
|
112
|
+
</a>
|
113
|
+
{% endif %}
|
114
|
+
</nav>
|
115
|
+
{% endif %}
|