jekyll-theme-amethyst 0.2.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/sidebar_api.yml +6 -8
- data/_includes/sidebar.html +24 -4
- data/_includes/toc.html +182 -0
- data/_layouts/group.html +5 -0
- data/_layouts/page-api.html +8 -1
- data/_layouts/page.html +22 -2
- data/_layouts/post.html +1 -1
- data/_layouts/posts-archive.html +1 -1
- data/_layouts/posts-author.html +1 -1
- data/_layouts/posts-tag.html +1 -1
- data/_layouts/posts-year.html +1 -1
- data/_layouts/posts.html +1 -1
- data/_sass/amethyst.scss +25 -0
- data/amethyst.gemspec +1 -1
- data/api/foo/baz.md +1 -3
- data/intro.md +2 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8528b24fa548044f1650452f5e97ac5d84725985de5432cef5c9663d859d286b
|
4
|
+
data.tar.gz: ed4f1aff5cdfcbb955eaf53d28335b675442fff98f1e5a2aa90128a433be91f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9692ea4cca6a18a9c08249990a289209fd88c8cea6e211a8d2a15790e37acbb34002f852fe43501d01764b1632b966009f34d01bd44f6e017ae4b84ca981fc50
|
7
|
+
data.tar.gz: 5a222a9c7538dc9563f7d7ef949a4dc453f73ee587f5b7c9aa12b4c0f6e9e1dacae6e153036936003202785cd5acdab88fb0d18c76a41436c8e8c0c142c72bef
|
data/_data/sidebar_api.yml
CHANGED
@@ -3,11 +3,9 @@
|
|
3
3
|
|
4
4
|
- group: lorem
|
5
5
|
|
6
|
-
- type:
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
- url: /api/removed/
|
13
|
-
title: Removed
|
6
|
+
- type: link
|
7
|
+
url: /api/deprecated/
|
8
|
+
title: Deprecated
|
9
|
+
- type: link
|
10
|
+
url: /api/removed/
|
11
|
+
title: Removed
|
data/_includes/sidebar.html
CHANGED
@@ -2,15 +2,19 @@
|
|
2
2
|
|
3
3
|
Parameters:
|
4
4
|
|
5
|
-
* blocks:
|
5
|
+
* blocks: [Default: nil]
|
6
6
|
Key in `site.data` corresponding to a `_data/*.yml` file.
|
7
7
|
|
8
|
+
* toc: [Default: false]
|
9
|
+
Enable table of contents.
|
10
|
+
|
8
11
|
Block data:
|
9
12
|
|
10
13
|
* type: [Default: "group"]
|
11
14
|
What type of block to add to the sidebar.
|
12
15
|
- "group" to query a list of pages from a page group.
|
13
16
|
- "list" to specify your own custom list.
|
17
|
+
- "link" to specify a single link.
|
14
18
|
- "archive" to query a list of chronological pages based on their layout.
|
15
19
|
- "tags" to query a list of alphabetical pages based on their layout.
|
16
20
|
|
@@ -36,7 +40,8 @@ Block data:
|
|
36
40
|
- active: Expand when the current page is in the list.
|
37
41
|
|
38
42
|
{%- endcomment -%}
|
39
|
-
<
|
43
|
+
<aside class="sidebar" role="complementary">
|
44
|
+
{%- if include.blocks -%}
|
40
45
|
{%- for block in site.data[include.blocks] -%}
|
41
46
|
{%- assign block_type = block.type | default: "group" -%}
|
42
47
|
{%- assign block_title = block.title -%}
|
@@ -58,6 +63,9 @@ Block data:
|
|
58
63
|
{%- assign block_contents = site.pages | where: "layout", "posts-year" | sort_natural: 'date' | reverse -%}
|
59
64
|
{%- elsif block_type == "tags" -%}
|
60
65
|
{%- assign block_contents = site.pages | where: "layout", "posts-tag" | sort_natural: 'title' -%}
|
66
|
+
{%- elsif block_type == "link" -%}
|
67
|
+
{%- assign block_contents = nil -%}
|
68
|
+
{%- assign block_expand = false -%}
|
61
69
|
{%- endif -%}
|
62
70
|
|
63
71
|
{%- if block_expand == "active" -%}
|
@@ -85,5 +93,17 @@ Block data:
|
|
85
93
|
{%- endfor -%}
|
86
94
|
</ul>
|
87
95
|
{%- endif -%}
|
88
|
-
{%- endfor
|
89
|
-
|
96
|
+
{%- endfor -%}
|
97
|
+
|
98
|
+
{%- if include.toc -%}
|
99
|
+
<hr>
|
100
|
+
{%- endif -%}
|
101
|
+
{%- endif -%}
|
102
|
+
|
103
|
+
{%- if include.toc -%}
|
104
|
+
<div class="toc-wrapper">
|
105
|
+
<h4>Table of contents</h4>
|
106
|
+
{%- include toc.html html=content sanitize=true h_max=3 ordered=true skip_no_ids=true class="toc" item_class="sidebar-item" -%}
|
107
|
+
</div>
|
108
|
+
{%- endif -%}
|
109
|
+
</aside>
|
data/_includes/toc.html
ADDED
@@ -0,0 +1,182 @@
|
|
1
|
+
{% capture tocWorkspace %}
|
2
|
+
{% comment %}
|
3
|
+
Copyright (c) 2017 Vladimir "allejo" Jimenez
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person
|
6
|
+
obtaining a copy of this software and associated documentation
|
7
|
+
files (the "Software"), to deal in the Software without
|
8
|
+
restriction, including without limitation the rights to use,
|
9
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
copies of the Software, and to permit persons to whom the
|
11
|
+
Software is furnished to do so, subject to the following
|
12
|
+
conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be
|
15
|
+
included in all copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
18
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
19
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
21
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
22
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
23
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
24
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
25
|
+
{% endcomment %}
|
26
|
+
{% comment %}
|
27
|
+
Version 1.1.0
|
28
|
+
https://github.com/allejo/jekyll-toc
|
29
|
+
|
30
|
+
"...like all things liquid - where there's a will, and ~36 hours to spare, there's usually a/some way" ~jaybe
|
31
|
+
|
32
|
+
Usage:
|
33
|
+
{% include toc.html html=content sanitize=true class="inline_toc" id="my_toc" h_min=2 h_max=3 %}
|
34
|
+
|
35
|
+
Parameters:
|
36
|
+
* html (string) - the HTML of compiled markdown generated by kramdown in Jekyll
|
37
|
+
|
38
|
+
Optional Parameters:
|
39
|
+
* sanitize (bool) : false - when set to true, the headers will be stripped of any HTML in the TOC
|
40
|
+
* class (string) : '' - a CSS class assigned to the TOC
|
41
|
+
* id (string) : '' - an ID to assigned to the TOC
|
42
|
+
* h_min (int) : 1 - the minimum TOC header level to use; any header lower than this value will be ignored
|
43
|
+
* h_max (int) : 6 - the maximum TOC header level to use; any header greater than this value will be ignored
|
44
|
+
* ordered (bool) : false - when set to true, an ordered list will be outputted instead of an unordered list
|
45
|
+
* item_class (string) : '' - add custom class(es) for each list item; has support for '%level%' placeholder, which is the current heading level
|
46
|
+
* submenu_class (string) : '' - add custom class(es) for each child group of headings; has support for '%level%' placeholder which is the current "submenu" heading level
|
47
|
+
* base_url (string) : '' - add a base url to the TOC links for when your TOC is on another page than the actual content
|
48
|
+
* anchor_class (string) : '' - add custom class(es) for each anchor element
|
49
|
+
* skip_no_ids (bool) : false - skip headers that do not have an `id` attribute
|
50
|
+
|
51
|
+
Output:
|
52
|
+
An ordered or unordered list representing the table of contents of a markdown block. This snippet will only
|
53
|
+
generate the table of contents and will NOT output the markdown given to it
|
54
|
+
{% endcomment %}
|
55
|
+
|
56
|
+
{% capture newline %}
|
57
|
+
{% endcapture %}
|
58
|
+
{% assign newline = newline | rstrip %} <!-- Remove the extra spacing but preserve the newline -->
|
59
|
+
|
60
|
+
{% capture deprecation_warnings %}{% endcapture %}
|
61
|
+
|
62
|
+
{% if include.baseurl %}
|
63
|
+
{% capture deprecation_warnings %}{{ deprecation_warnings }}<!-- jekyll-toc :: "baseurl" has been deprecated, use "base_url" instead -->{{ newline }}{% endcapture %}
|
64
|
+
{% endif %}
|
65
|
+
|
66
|
+
{% if include.skipNoIDs %}
|
67
|
+
{% capture deprecation_warnings %}{{ deprecation_warnings }}<!-- jekyll-toc :: "skipNoIDs" has been deprecated, use "skip_no_ids" instead -->{{ newline }}{% endcapture %}
|
68
|
+
{% endif %}
|
69
|
+
|
70
|
+
{% capture jekyll_toc %}{% endcapture %}
|
71
|
+
{% assign orderedList = include.ordered | default: false %}
|
72
|
+
{% assign baseURL = include.base_url | default: include.baseurl | default: '' %}
|
73
|
+
{% assign skipNoIDs = include.skip_no_ids | default: include.skipNoIDs | default: false %}
|
74
|
+
{% assign minHeader = include.h_min | default: 1 %}
|
75
|
+
{% assign maxHeader = include.h_max | default: 6 %}
|
76
|
+
{% assign nodes = include.html | strip | split: '<h' %}
|
77
|
+
|
78
|
+
{% assign firstHeader = true %}
|
79
|
+
{% assign currLevel = 0 %}
|
80
|
+
{% assign lastLevel = 0 %}
|
81
|
+
|
82
|
+
{% capture listModifier %}{% if orderedList %}ol{% else %}ul{% endif %}{% endcapture %}
|
83
|
+
|
84
|
+
{% for node in nodes %}
|
85
|
+
{% if node == "" %}
|
86
|
+
{% continue %}
|
87
|
+
{% endif %}
|
88
|
+
|
89
|
+
{% assign currLevel = node | replace: '"', '' | slice: 0, 1 | times: 1 %}
|
90
|
+
|
91
|
+
{% if currLevel < minHeader or currLevel > maxHeader %}
|
92
|
+
{% continue %}
|
93
|
+
{% endif %}
|
94
|
+
|
95
|
+
{% assign _workspace = node | split: '</h' %}
|
96
|
+
|
97
|
+
{% assign _idWorkspace = _workspace[0] | split: 'id="' %}
|
98
|
+
{% assign _idWorkspace = _idWorkspace[1] | split: '"' %}
|
99
|
+
{% assign htmlID = _idWorkspace[0] %}
|
100
|
+
|
101
|
+
{% assign _classWorkspace = _workspace[0] | split: 'class="' %}
|
102
|
+
{% assign _classWorkspace = _classWorkspace[1] | split: '"' %}
|
103
|
+
{% assign htmlClass = _classWorkspace[0] %}
|
104
|
+
|
105
|
+
{% if htmlClass contains "no_toc" %}
|
106
|
+
{% continue %}
|
107
|
+
{% endif %}
|
108
|
+
|
109
|
+
{% if firstHeader %}
|
110
|
+
{% assign minHeader = currLevel %}
|
111
|
+
{% endif %}
|
112
|
+
|
113
|
+
{% capture _hAttrToStrip %}{{ _workspace[0] | split: '>' | first }}>{% endcapture %}
|
114
|
+
{% assign header = _workspace[0] | replace: _hAttrToStrip, '' %}
|
115
|
+
|
116
|
+
{% if include.item_class and include.item_class != blank %}
|
117
|
+
{% capture listItemClass %} class="{{ include.item_class | replace: '%level%', currLevel | split: '.' | join: ' ' }}"{% endcapture %}
|
118
|
+
{% endif %}
|
119
|
+
|
120
|
+
{% if include.submenu_class and include.submenu_class != blank %}
|
121
|
+
{% assign subMenuLevel = currLevel | minus: 1 %}
|
122
|
+
{% capture subMenuClass %} class="{{ include.submenu_class | replace: '%level%', subMenuLevel | split: '.' | join: ' ' }}"{% endcapture %}
|
123
|
+
{% endif %}
|
124
|
+
|
125
|
+
{% capture anchorBody %}{% if include.sanitize %}{{ header | strip_html }}{% else %}{{ header }}{% endif %}{% endcapture %}
|
126
|
+
|
127
|
+
{% if htmlID %}
|
128
|
+
{% capture anchorAttributes %} href="{% if baseURL %}{{ baseURL }}{% endif %}#{{ htmlID }}"{% endcapture %}
|
129
|
+
|
130
|
+
{% if include.anchor_class %}
|
131
|
+
{% capture anchorAttributes %}{{ anchorAttributes }} class="{{ include.anchor_class | split: '.' | join: ' ' }}"{% endcapture %}
|
132
|
+
{% endif %}
|
133
|
+
|
134
|
+
{% capture listItem %}<a{{ anchorAttributes }}>{{ anchorBody }}</a>{% endcapture %}
|
135
|
+
{% elsif skipNoIDs == true %}
|
136
|
+
{% continue %}
|
137
|
+
{% else %}
|
138
|
+
{% capture listItem %}{{ anchorBody }}{% endcapture %}
|
139
|
+
{% endif %}
|
140
|
+
|
141
|
+
{% if currLevel > lastLevel %}
|
142
|
+
{% capture jekyll_toc %}{{ jekyll_toc }}<{{ listModifier }}{{ subMenuClass }}>{% endcapture %}
|
143
|
+
{% elsif currLevel < lastLevel %}
|
144
|
+
{% assign repeatCount = lastLevel | minus: currLevel %}
|
145
|
+
|
146
|
+
{% for i in (1..repeatCount) %}
|
147
|
+
{% capture jekyll_toc %}{{ jekyll_toc }}</li></{{ listModifier }}>{% endcapture %}
|
148
|
+
{% endfor %}
|
149
|
+
|
150
|
+
{% capture jekyll_toc %}{{ jekyll_toc }}</li>{% endcapture %}
|
151
|
+
{% else %}
|
152
|
+
{% capture jekyll_toc %}{{ jekyll_toc }}</li>{% endcapture %}
|
153
|
+
{% endif %}
|
154
|
+
|
155
|
+
{% capture jekyll_toc %}{{ jekyll_toc }}<li{{ listItemClass }}>{{ listItem }}{% endcapture %}
|
156
|
+
|
157
|
+
{% assign lastLevel = currLevel %}
|
158
|
+
{% assign firstHeader = false %}
|
159
|
+
{% endfor %}
|
160
|
+
|
161
|
+
{% assign repeatCount = minHeader | minus: 1 %}
|
162
|
+
{% assign repeatCount = lastLevel | minus: repeatCount %}
|
163
|
+
{% for i in (1..repeatCount) %}
|
164
|
+
{% capture jekyll_toc %}{{ jekyll_toc }}</li></{{ listModifier }}>{% endcapture %}
|
165
|
+
{% endfor %}
|
166
|
+
|
167
|
+
{% if jekyll_toc != '' %}
|
168
|
+
{% assign rootAttributes = '' %}
|
169
|
+
{% if include.class and include.class != blank %}
|
170
|
+
{% capture rootAttributes %} class="{{ include.class | split: '.' | join: ' ' }}"{% endcapture %}
|
171
|
+
{% endif %}
|
172
|
+
|
173
|
+
{% if include.id and include.id != blank %}
|
174
|
+
{% capture rootAttributes %}{{ rootAttributes }} id="{{ include.id }}"{% endcapture %}
|
175
|
+
{% endif %}
|
176
|
+
|
177
|
+
{% if rootAttributes %}
|
178
|
+
{% assign nodes = jekyll_toc | split: '>' %}
|
179
|
+
{% capture jekyll_toc %}<{{ listModifier }}{{ rootAttributes }}>{{ nodes | shift | join: '>' }}>{% endcapture %}
|
180
|
+
{% endif %}
|
181
|
+
{% endif %}
|
182
|
+
{% endcapture %}{% assign tocWorkspace = '' %}{{ deprecation_warnings }}{{ jekyll_toc }}
|
data/_layouts/group.html
CHANGED
data/_layouts/page-api.html
CHANGED
@@ -1,9 +1,15 @@
|
|
1
1
|
---
|
2
2
|
layout: wrapper
|
3
|
+
|
4
|
+
# Parameters:
|
5
|
+
#
|
6
|
+
# - version_added: semver string (e.g. "1.2.3"). Can be linked by setting `site.amethyst.release_base`.
|
7
|
+
# - version_deprecated: semver string
|
8
|
+
# - version_removed: semver string
|
9
|
+
#
|
3
10
|
---
|
4
11
|
|
5
12
|
<div class="main main--columns wrapper">
|
6
|
-
{% include sidebar.html blocks="sidebar_api" %}
|
7
13
|
<div class="content" role="main">
|
8
14
|
<h1>{{ page.title }}</h1>
|
9
15
|
{%- if page.version_added or page.version_deprecated -%}
|
@@ -29,4 +35,5 @@ layout: wrapper
|
|
29
35
|
{%- endif %}
|
30
36
|
{{- content }}
|
31
37
|
</div>
|
38
|
+
{% include sidebar.html blocks="sidebar_api" toc=true %}
|
32
39
|
</div>
|
data/_layouts/page.html
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
---
|
2
2
|
layout: wrapper
|
3
|
+
|
4
|
+
# Parameters:
|
5
|
+
#
|
6
|
+
# - amethyst.hero: boolean. Set to false to render page title without hero. Default: true.
|
7
|
+
# - amethyst.toc: boolean. Set to true to add sidebar with table of contents. Default: false.
|
8
|
+
#
|
3
9
|
---
|
4
10
|
|
5
11
|
{%- unless page.amethyst.hero == false %}
|
@@ -9,9 +15,23 @@ layout: wrapper
|
|
9
15
|
</div>
|
10
16
|
</section>
|
11
17
|
{% endunless -%}
|
18
|
+
|
19
|
+
{%- if page.amethyst.toc -%}
|
20
|
+
<div class="main main--columns wrapper">
|
21
|
+
<div class="content">
|
22
|
+
{%- else -%}
|
12
23
|
<div class="main wrapper content">
|
24
|
+
{%- endif -%}
|
25
|
+
|
13
26
|
{%- if page.amethyst.hero == false -%}
|
14
|
-
|
27
|
+
<h1>{{ page.title }}</h1>
|
15
28
|
{%- endif -%}
|
16
|
-
|
29
|
+
{{ content }}
|
30
|
+
|
31
|
+
{%- if page.amethyst.toc -%}
|
32
|
+
</div>
|
33
|
+
{% include sidebar.html toc=true %}
|
17
34
|
</div>
|
35
|
+
{%- else -%}
|
36
|
+
</div>
|
37
|
+
{%- endif -%}
|
data/_layouts/post.html
CHANGED
@@ -3,7 +3,6 @@ layout: wrapper
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<div class="main main--columns wrapper">
|
6
|
-
{% include sidebar.html blocks="sidebar_blog" %}
|
7
6
|
<div class="content">
|
8
7
|
<article class="content">
|
9
8
|
<header>
|
@@ -34,4 +33,5 @@ Docs: <https://en.gravatar.com/site/implement/images/>
|
|
34
33
|
</div>
|
35
34
|
{%- endif -%}
|
36
35
|
</div>
|
36
|
+
{% include sidebar.html blocks="sidebar_blog" %}
|
37
37
|
</div>
|
data/_layouts/posts-archive.html
CHANGED
@@ -3,7 +3,6 @@ layout: wrapper
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<div class="main main--columns wrapper">
|
6
|
-
{% include sidebar.html blocks="sidebar_blog" %}
|
7
6
|
{%- assign date_format = site.amethyst.date_format | default: "%e %B %Y" -%}
|
8
7
|
{%- assign posts = site.posts -%}
|
9
8
|
<div class="posts content">
|
@@ -14,4 +13,5 @@ layout: wrapper
|
|
14
13
|
{%- endfor -%}
|
15
14
|
</ul>
|
16
15
|
</div>
|
16
|
+
{% include sidebar.html blocks="sidebar_blog" %}
|
17
17
|
</div>
|
data/_layouts/posts-author.html
CHANGED
@@ -3,7 +3,6 @@ layout: wrapper
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<div class="main main--columns wrapper">
|
6
|
-
{% include sidebar.html blocks="sidebar_blog" %}
|
7
6
|
{%- assign date_format = site.amethyst.date_format | default: "%e %B %Y" -%}
|
8
7
|
{%- assign posts = site.posts | where: 'author', page.author -%}
|
9
8
|
<div class="posts content">
|
@@ -18,4 +17,5 @@ layout: wrapper
|
|
18
17
|
</div>
|
19
18
|
{%- endfor -%}
|
20
19
|
</div>
|
20
|
+
{% include sidebar.html blocks="sidebar_blog" %}
|
21
21
|
</div>
|
data/_layouts/posts-tag.html
CHANGED
@@ -3,7 +3,6 @@ layout: wrapper
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<div class="main main--columns wrapper">
|
6
|
-
{% include sidebar.html blocks="sidebar_blog" %}
|
7
6
|
{%- assign date_format = site.amethyst.date_format | default: "%e %B %Y" -%}
|
8
7
|
{%- assign posts = site.tags[page.tag] -%}
|
9
8
|
<div class="posts content">
|
@@ -21,4 +20,5 @@ layout: wrapper
|
|
21
20
|
</div>
|
22
21
|
{%- endfor -%}
|
23
22
|
</div>
|
23
|
+
{% include sidebar.html blocks="sidebar_blog" %}
|
24
24
|
</div>
|
data/_layouts/posts-year.html
CHANGED
@@ -3,7 +3,6 @@ layout: wrapper
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<div class="main main--columns wrapper">
|
6
|
-
{% include sidebar.html blocks="sidebar_blog" %}
|
7
6
|
{%- assign date_format = site.amethyst.date_format | default: "%e %B %Y" -%}
|
8
7
|
{%- assign posts = page.posts -%}
|
9
8
|
<div class="posts content">
|
@@ -21,4 +20,5 @@ layout: wrapper
|
|
21
20
|
</div>
|
22
21
|
{%- endfor -%}
|
23
22
|
</div>
|
23
|
+
{% include sidebar.html blocks="sidebar_blog" %}
|
24
24
|
</div>
|
data/_layouts/posts.html
CHANGED
@@ -3,7 +3,6 @@ layout: wrapper
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<div class="main main--columns wrapper">
|
6
|
-
{% include sidebar.html blocks="sidebar_blog" %}
|
7
6
|
{%- assign date_format = site.amethyst.date_format | default: "%e %B %Y" -%}
|
8
7
|
{%- assign posts = site.posts | slice: 0, 10 -%}
|
9
8
|
<div class="posts content">
|
@@ -25,4 +24,5 @@ layout: wrapper
|
|
25
24
|
<a href="{{ archive_page.url | relative_url }}">Older posts</a>
|
26
25
|
{%- endif -%}
|
27
26
|
</div>
|
27
|
+
{% include sidebar.html blocks="sidebar_blog" %}
|
28
28
|
</div>
|
data/_sass/amethyst.scss
CHANGED
@@ -160,6 +160,7 @@ iframe {
|
|
160
160
|
min-width: 0;
|
161
161
|
}
|
162
162
|
.sidebar {
|
163
|
+
order: -1;
|
163
164
|
display: block;
|
164
165
|
flex: 0 0 220px;
|
165
166
|
margin-right: 20px;
|
@@ -739,6 +740,30 @@ table {
|
|
739
740
|
text-decoration: none;
|
740
741
|
}
|
741
742
|
|
743
|
+
.toc-wrapper {
|
744
|
+
position: sticky;
|
745
|
+
top: 0;
|
746
|
+
}
|
747
|
+
.toc,
|
748
|
+
.toc ol {
|
749
|
+
list-style-type: none;
|
750
|
+
margin: 0;
|
751
|
+
padding: 0;
|
752
|
+
}
|
753
|
+
.toc .sidebar-item {
|
754
|
+
border-left: 0;
|
755
|
+
}
|
756
|
+
|
757
|
+
// .toc,
|
758
|
+
// .toc ol {
|
759
|
+
// counter-reset: section;
|
760
|
+
// }
|
761
|
+
// .toc li:before {
|
762
|
+
// counter-increment: section;
|
763
|
+
// // Combine with any parent section(s), separated by dot
|
764
|
+
// // content: counters(section, ".") ". ";
|
765
|
+
// }
|
766
|
+
|
742
767
|
/* Layout: page */
|
743
768
|
|
744
769
|
.hero {
|
data/amethyst.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "jekyll-theme-amethyst"
|
3
|
-
spec.version = "0.
|
3
|
+
spec.version = "0.3.0"
|
4
4
|
spec.summary = "https://github.com/qunitjs/jekyll-theme-amethyst"
|
5
5
|
spec.authors = ["Timo Tijhof", "Trent Willis"]
|
6
6
|
spec.files = `git ls-files -z`.split("\x0")
|
data/api/foo/baz.md
CHANGED
@@ -16,11 +16,9 @@ Hello world. This entry has some content and an added version.
|
|
16
16
|
| `label` (string) | Label for this object. |
|
17
17
|
|
18
18
|
|
19
|
-
## Description
|
20
|
-
|
21
19
|
A long long sequence of words that continues until its end eventually wraps across to the next line on your screen.
|
22
20
|
|
23
|
-
|
21
|
+
## Changelog
|
24
22
|
|
25
23
|
| [Xample 2.4](https://github.com/qunitjs/qunit/releases/tag/2.4.0) | The `module.only()`, `module.skip()`, and `module.todo()` aliases were introduced.
|
26
24
|
| [Xample 2.0](https://github.com/qunitjs/qunit/releases/tag/2.0.0) | The `before` and `after` options were introduced.
|
data/intro.md
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-amethyst
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Timo Tijhof
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2021-09-
|
12
|
+
date: 2021-09-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|
@@ -138,6 +138,7 @@ files:
|
|
138
138
|
- _includes/search-js.html
|
139
139
|
- _includes/search.html
|
140
140
|
- _includes/sidebar.html
|
141
|
+
- _includes/toc.html
|
141
142
|
- _includes/version.html
|
142
143
|
- _layouts/group.html
|
143
144
|
- _layouts/home.html
|