jekyll-theme-amethyst 0.2.0

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.
Files changed (76) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/doc-search.yaml +25 -0
  3. data/.github/workflows/gem.yaml +25 -0
  4. data/.github/workflows/github-pages.yaml +47 -0
  5. data/.github/workflows/spider-check.yaml +52 -0
  6. data/.gitignore +4 -0
  7. data/404.md +9 -0
  8. data/Gemfile +6 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +35 -0
  11. data/_config.yml +91 -0
  12. data/_data/sidebar_api.yml +13 -0
  13. data/_data/sidebar_blog.yml +11 -0
  14. data/_data/sitenav.yml +11 -0
  15. data/_includes/opengraph.html +49 -0
  16. data/_includes/search-js.html +113 -0
  17. data/_includes/search.html +14 -0
  18. data/_includes/sidebar.html +89 -0
  19. data/_includes/version.html +28 -0
  20. data/_layouts/group.html +14 -0
  21. data/_layouts/home.html +25 -0
  22. data/_layouts/page-api.html +32 -0
  23. data/_layouts/page.html +17 -0
  24. data/_layouts/post.html +37 -0
  25. data/_layouts/posts-archive.html +17 -0
  26. data/_layouts/posts-author.html +21 -0
  27. data/_layouts/posts-tag.html +24 -0
  28. data/_layouts/posts-year.html +24 -0
  29. data/_layouts/posts.html +28 -0
  30. data/_layouts/wrapper.html +132 -0
  31. data/_posts/2006-01-26-announcing-the-blog.md +13 -0
  32. data/_posts/2006-10-18-foo-110.md +13 -0
  33. data/_posts/2007-10-18-foo-112.md +13 -0
  34. data/_posts/2008-10-18-foo-126.md +13 -0
  35. data/_posts/2009-10-18-foo-132.md +13 -0
  36. data/_posts/2010-10-18-foo-143.md +13 -0
  37. data/_posts/2011-10-18-foo-171.md +13 -0
  38. data/_posts/2012-10-18-foo-183.md +13 -0
  39. data/_posts/2013-10-18-foo-191.md +13 -0
  40. data/_posts/2014-10-18-foo-211.md +13 -0
  41. data/_posts/2015-10-18-foo-300.md +13 -0
  42. data/_posts/2017-10-18-foo-321.md +13 -0
  43. data/_posts/2018-10-18-foo-331.md +13 -0
  44. data/_posts/2019-10-18-foo-341.md +13 -0
  45. data/_posts/2020-04-01-foo-350.md +13 -0
  46. data/_posts/2020-10-18-foo-351.md +13 -0
  47. data/_posts/2021-04-01-hello-world.md +51 -0
  48. data/_sass/amethyst-variables.scss +22 -0
  49. data/_sass/amethyst.scss +906 -0
  50. data/_sass/custom.scss +2 -0
  51. data/_sass/highlight.scss +131 -0
  52. data/about.md +28 -0
  53. data/amethyst.gemspec +23 -0
  54. data/api/deprecated.md +5 -0
  55. data/api/foo/baz.md +49 -0
  56. data/api/foo/index.md +5 -0
  57. data/api/foo/quux.md +9 -0
  58. data/api/index.md +8 -0
  59. data/api/lorem/dolor.md +14 -0
  60. data/api/lorem/index.md +5 -0
  61. data/api/lorem/sit.md +15 -0
  62. data/api/removed.md +5 -0
  63. data/assets/logo-algolia.svg +1 -0
  64. data/assets/styles.scss +7 -0
  65. data/blog-archive.md +4 -0
  66. data/blog.md +4 -0
  67. data/docs/config.md +122 -0
  68. data/docs/getting-started.md +77 -0
  69. data/favicon.svg +3 -0
  70. data/guides.md +11 -0
  71. data/index.md +51 -0
  72. data/intro.md +41 -0
  73. data/lib/jekyll-theme-amethyst.rb +39 -0
  74. data/tag/event.md +5 -0
  75. data/tag/release.md +5 -0
  76. metadata +222 -0
data/_sass/custom.scss ADDED
@@ -0,0 +1,2 @@
1
+ // Add custom styles via a local `_sass/custom.scss` file
2
+ // in your website.
@@ -0,0 +1,131 @@
1
+ // Optimisation: Never used
2
+ // .highlight .hll {
3
+ // background-color: #ffffcc;
4
+ // }
5
+
6
+ // Optimisation: Never used
7
+ // /* Error */ .highlight .err {
8
+ // color: #a61717;
9
+ // background-color: #e3d2d2;
10
+ // }
11
+
12
+ /* Keyword */ .highlight .k,
13
+ /* Operator */ .highlight .o,
14
+ /* Keyword.Constant */ .highlight .kc,
15
+ /* Keyword.Declaration */ .highlight .kd,
16
+ /* Keyword.Namespace */ .highlight .kn,
17
+ /* Keyword.Pseudo */ .highlight .kp,
18
+ /* Keyword.Reserved */ .highlight .kr,
19
+ /* Operator.Word */ .highlight .ow {
20
+ color: #000000;
21
+ font-weight: bold;
22
+ }
23
+ /* Comment */ .highlight .c,
24
+ /* Comment.Multiline */ .highlight .cm,
25
+ /* Comment.Single */ .highlight .c1 {
26
+ color: #999988;
27
+ font-style: italic;
28
+ }
29
+ /* Comment.Preproc */ .highlight .cp,
30
+ /* Comment.Special */ .highlight .cs {
31
+ color: #999999;
32
+ font-weight: bold;
33
+ font-style: italic;
34
+ }
35
+ /* Generic.Deleted */ .highlight .gd {
36
+ color: #000000;
37
+ background-color: #ffdddd;
38
+ }
39
+ /* Generic.Emph */ .highlight .ge {
40
+ color: #000000;
41
+ font-style: italic;
42
+ }
43
+ /* Generic.Error */ .highlight .gr,
44
+ /* Generic.Traceback */ .highlight .gt {
45
+ color: #aa0000;
46
+ }
47
+ /* Generic.Heading */ .highlight .gh {
48
+ color: #999999;
49
+ }
50
+ /* Generic.Inserted */ .highlight .gi {
51
+ color: #000000;
52
+ background-color: #ddffdd;
53
+ }
54
+ /* Generic.Output */ .highlight .go {
55
+ color: #888888;
56
+ }
57
+ /* Generic.Prompt */ .highlight .gp,
58
+ /* Name.Namespace */ .highlight .nn {
59
+ color: #555555;
60
+ }
61
+ /* Generic.Strong */ .highlight .gs {
62
+ font-weight: bold;
63
+ }
64
+ /* Generic.Subheading */ .highlight .gu {
65
+ color: #aaaaaa;
66
+ }
67
+ /* Keyword.Type */ .highlight .kt {
68
+ color: #445588;
69
+ font-weight: bold;
70
+ }
71
+ /* Literal.Number */ .highlight .m,
72
+ /* Literal.Number.Float */ .highlight .mf,
73
+ /* Literal.Number.Hex */ .highlight .mh,
74
+ /* Literal.Number.Integer */ .highlight .mi,
75
+ /* Literal.Number.Oct */ .highlight .mo,
76
+ /* Literal.Number.Integer.Long */ .highlight .il {
77
+ color: #009999;
78
+ }
79
+ /* Literal.String */ .highlight .s,
80
+ /* Literal.String.Backtick */ .highlight .sb,
81
+ /* Literal.String.Char */ .highlight .sc,
82
+ /* Literal.String.Doc */ .highlight .sd,
83
+ /* Literal.String.Double */ .highlight .s2,
84
+ /* Literal.String.Escape */ .highlight .se,
85
+ /* Literal.String.Heredoc */ .highlight .sh,
86
+ /* Literal.String.Interpol */ .highlight .si,
87
+ /* Literal.String.Other */ .highlight .sx,
88
+ /* Literal.String.Single */ .highlight .s1 {
89
+ color: #d01040;
90
+ }
91
+ /* Name.Attribute */ .highlight .na,
92
+ /* Name.Constant */ .highlight .no,
93
+ /* Name.Tag */ .highlight .nt,
94
+ /* Name.Variable */ .highlight .nv,
95
+ /* Name.Variable.Class */ .highlight .vc,
96
+ /* Name.Variable.Global */ .highlight .vg,
97
+ /* Name.Variable.Instance */ .highlight .vi {
98
+ color: #008080;
99
+ }
100
+ /* Name.Builtin */ .highlight .nb {
101
+ color: #0086B3;
102
+ }
103
+ /* Name.Class */ .highlight .nc {
104
+ color: #445588;
105
+ font-weight: bold;
106
+ }
107
+ /* Name.Decorator */ .highlight .nd {
108
+ color: #3c5d5d;
109
+ font-weight: bold;
110
+ }
111
+ /* Name.Entity */ .highlight .ni {
112
+ color: #800080;
113
+ }
114
+ /* Name.Exception */ .highlight .ne,
115
+ /* Name.Function */ .highlight .nf,
116
+ /* Name.Label */ .highlight .nl {
117
+ color: #990000;
118
+ font-weight: bold;
119
+ }
120
+ /* Text.Whitespace */ .highlight .w {
121
+ color: #bbbbbb;
122
+ }
123
+ /* Literal.String.Regex */ .highlight .sr {
124
+ color: #009926;
125
+ }
126
+ /* Literal.String.Symbol */ .highlight .ss {
127
+ color: #990073;
128
+ }
129
+ /* Name.Builtin.Pseudo */ .highlight .bp {
130
+ color: #999999;
131
+ }
data/about.md ADDED
@@ -0,0 +1,28 @@
1
+ ---
2
+ layout: page
3
+ title: About
4
+ ---
5
+
6
+ <p class="lead">An amazing website.</p>
7
+
8
+ ## Philosophy
9
+
10
+ Muffin I love sesame snaps icing candy cotton candy donut pie I love. I love soufflé sweet.
11
+
12
+ ### Hue
13
+
14
+ Cupcake I love I love. Dragée fruitcake biscuit chocolate wafer powder I love bear claw icing. Pastry sweet roll jelly I love dragée fruitcake.
15
+
16
+ Pastry lemon drops chocolate sugar plum oat cake brownie chupa chups toffee.
17
+
18
+ ### Mineral
19
+
20
+ Gummi bears donut chupa chups. Sweet roll chocolate cupcake pudding gummi bears donut. Muffin donut carrot cake sesame snaps lollipop chocolate powder.
21
+
22
+ Danish I love apple pie chocolate. Chocolate cake gummi bears caramels fruitcake sugar plum powder jelly-o jelly-o sweet roll.
23
+
24
+ ### Quartz
25
+
26
+ Lemon drops carrot cake dessert. Liquorice macaroon chocolate I love. Lollipop topping I love bonbon I love brownie powder. Jelly-o chocolate cheesecake sugar plum gummies sweet candy jujubes macaroon. Pie candy candy lollipop powder chocolate cake.
27
+
28
+ Jujubes candy lemon drops. Sesame snaps pie macaroon croissant liquorice sesame snaps powder. Cupcake topping gingerbread carrot cake sweet roll bonbon.
data/amethyst.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "jekyll-theme-amethyst"
3
+ spec.version = "0.2.0"
4
+ spec.summary = "https://github.com/qunitjs/jekyll-theme-amethyst"
5
+ spec.authors = ["Timo Tijhof", "Trent Willis"]
6
+ spec.files = `git ls-files -z`.split("\x0")
7
+
8
+ spec.license = "MIT"
9
+ spec.homepage = "https://github.com/qunitjs/jekyll-theme-amethyst"
10
+
11
+ spec.metadata["plugin_type"] = "theme"
12
+ spec.require_paths = ["lib"]
13
+
14
+ spec.add_runtime_dependency "jekyll", ">= 4.2", "< 5.0"
15
+ spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.1.0"
16
+ spec.add_runtime_dependency "jekyll-redirect-from", "~> 0.16.0"
17
+ spec.add_runtime_dependency "jekyll-relative-links", "~> 0.6.1"
18
+ # For blog
19
+ spec.add_runtime_dependency "jekyll-feed", "~> 0.15.1"
20
+ spec.add_runtime_dependency "jekyll-archives", "~> 2.2.1"
21
+ # Temporary fix until there is a release with https://github.com/jekyll/jekyll/pull/8524/
22
+ spec.add_runtime_dependency "webrick", "~> 1.7"
23
+ end
data/api/deprecated.md ADDED
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: group
3
+ group: deprecated
4
+ title: Deprecated methods
5
+ ---
data/api/foo/baz.md ADDED
@@ -0,0 +1,49 @@
1
+ ---
2
+ layout: page-api
3
+ title: .baz()
4
+ excerpt: Hello world with some content.
5
+ groups:
6
+ - foo
7
+ version_added: "1.23.0"
8
+
9
+ ---
10
+
11
+ Hello world. This entry has some content and an added version.
12
+
13
+ | parameter | description |
14
+ |-----------|-------------|
15
+ | `size` (number) | Dimensions, applies to both width and height. |
16
+ | `label` (string) | Label for this object. |
17
+
18
+
19
+ ## Description
20
+
21
+ A long long sequence of words that continues until its end eventually wraps across to the next line on your screen.
22
+
23
+ ### Changelog
24
+
25
+ | [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
+ | [Xample 2.0](https://github.com/qunitjs/qunit/releases/tag/2.0.0) | The `before` and `after` options were introduced.
27
+ | [Xample 1.20](https://github.com/qunitjs/qunit/releases/tag/1.20.0) | The `nested` scope feature was introduced.
28
+ | [Xample 1.16](https://github.com/qunitjs/qunit/releases/tag/1.16.0) | The `beforeEach` and `afterEach` options were introduced.<br/>The `setup` and `teardown` options were deprecated.
29
+
30
+ ## Examples
31
+
32
+ ### Example: Ultimate object
33
+
34
+ A long long sequence of words that continues until its end eventually wraps across to the next line on your screen.
35
+
36
+ ```js
37
+ // A long long line that continues until its end goes far far away into the <pre>'s scrollable overflow
38
+ x.bar( 42, "text" );
39
+ ```
40
+
41
+ ### Example: Penultimate object
42
+
43
+ A short sequence of words on your screen.
44
+
45
+ ```js
46
+ // Unnamed item before last
47
+ x.bar( -1 );
48
+ ```
49
+
data/api/foo/index.md ADDED
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: group
3
+ group: foo
4
+ title: Foobar
5
+ ---
data/api/foo/quux.md ADDED
@@ -0,0 +1,9 @@
1
+ ---
2
+ layout: page-api
3
+ title: .quuz()
4
+ excerpt: Hello, where was I?
5
+ groups:
6
+ - foo
7
+ ---
8
+
9
+ Hello. Where was I? This entry has no version information.
data/api/index.md ADDED
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: page-api
3
+ title: Xample API
4
+ ---
5
+
6
+ Integer et tempus lectus. Vivamus risus tellus, porta in aliquet ac, egestas sed risus. Aliquam bibendum ac dui eu tempus. Mauris rutrum et enim a viverra. Nunc ac sapien dolor. Vestibulum ultrices nibh vel tortor congue, nec tempus lacus sagittis. Cras a turpis eros. Nulla facilisi. Aenean ac lobortis libero. Quisque sagittis ultricies congue. Proin id velit sit amet ipsum euismod laoreet quis ac lacus. Praesent ut pellentesque ex. Sed dolor nulla, consectetur ac arcu id, placerat pharetra justo.
7
+
8
+
@@ -0,0 +1,14 @@
1
+ ---
2
+ layout: page-api
3
+ title: Example.dolor()
4
+ excerpt: So.
5
+ groups:
6
+ - lorem
7
+ - deprecated
8
+ version_added: "2.0.0"
9
+ version_deprecated: "2.16.0"
10
+ ---
11
+
12
+ So, this entry has an added and deprecated version.
13
+
14
+ <p class="note note--warning" markdown="1">This method is __deprecated__ and it's recommended to use [`Object.assign()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) instead.</p>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: group
3
+ group: lorem
4
+ title: Lorem ipsum
5
+ ---
data/api/lorem/sit.md ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ layout: page-api
3
+ title: Example.sit()
4
+ excerpt: Hello, I've been through it all.
5
+ groups:
6
+ - lorem
7
+ - removed
8
+ version_added: "1.0.0"
9
+ version_deprecated: "1.23.0"
10
+ version_removed: "2.0.0"
11
+ ---
12
+
13
+ Hello. This item has been added, deprecated, and removed. Pfew!
14
+
15
+ <p class="note note--warning" markdown="1">This method is __deprecated__ and it's recommended to use [`Object.assign()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) instead.</p>
data/api/removed.md ADDED
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: group
3
+ group: removed
4
+ title: Removed methods
5
+ ---
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 485 120" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m16.8-1.001h88.4c8.7 0 15.8 7.065 15.8 15.8v88.405c0 8.7-7.065 15.795-15.8 15.795h-88.4c-8.7 0-15.8-7.06-15.8-15.795v-88.445c0-8.695 7.06-15.76 15.8-15.76" fill="#5468ff"/><path d="m73.505 25.788v-4.115a5.209 5.209 0 0 0 -5.21-5.205h-12.145a5.209 5.209 0 0 0 -5.21 5.205v4.225c0 .47.435.8.91.69a37.966 37.966 0 0 1 10.57-1.49c3.465 0 6.895.47 10.21 1.38.44.11.875-.215.875-.69m-33.285 5.385-2.075-2.075a5.206 5.206 0 0 0 -7.365 0l-2.48 2.475a5.185 5.185 0 0 0 0 7.355l2.04 2.04c.33.325.805.25 1.095-.075a39.876 39.876 0 0 1 3.975-4.66 37.68 37.68 0 0 1 4.7-4c.364-.22.4-.73.11-1.06m22.164 13.065v17.8c0 .51.55.875 1.02.62l15.825-8.19c.36-.18.47-.62.29-.98-3.28-5.755-9.37-9.685-16.405-9.94-.365 0-.73.29-.73.69m0 42.88c-13.195 0-23.915-10.705-23.915-23.88s10.72-23.875 23.915-23.875c13.2 0 23.916 10.7 23.916 23.875s-10.68 23.88-23.916 23.88m0-57.8c-18.74 0-33.94 15.18-33.94 33.92 0 18.745 15.2 33.89 33.94 33.89s33.94-15.18 33.94-33.925-15.165-33.885-33.94-33.885" fill="#fff"/><path d="m240.214 94.177c-23.365.11-23.365-18.855-23.365-21.875l-.04-71.045 14.254-2.26v70.61c0 1.715 0 12.56 9.15 12.595v11.975zm-57.78-11.61c4.374 0 7.62-.255 9.88-.69v-14.485a29.196 29.196 0 0 0 -3.43-.695 33.742 33.742 0 0 0 -4.956-.365c-1.57 0-3.175.11-4.775.365-1.605.22-3.065.655-4.34 1.275s-2.335 1.495-3.1 2.62c-.8 1.13-1.165 1.785-1.165 3.495 0 3.345 1.165 5.28 3.28 6.55 2.115 1.275 4.995 1.93 8.606 1.93zm-1.24-51.685c4.7 0 8.674.585 11.884 1.75 3.206 1.165 5.796 2.8 7.69 4.875 1.935 2.11 3.245 4.915 4.046 7.9.84 2.985 1.24 6.26 1.24 9.86v36.62c-2.185.47-5.506 1.015-9.95 1.67-4.446.655-9.44.985-14.986.985-3.68 0-7.07-.365-10.095-1.055-3.065-.69-5.65-1.82-7.84-3.385-2.15-1.565-3.825-3.57-5.065-6.04-1.205-2.48-1.825-5.97-1.825-9.61 0-3.495.69-5.715 2.045-8.12 1.38-2.4 3.24-4.365 5.575-5.895 2.37-1.53 5.065-2.62 8.165-3.275s6.345-.985 9.695-.985c1.57 0 3.21.11 4.96.29 1.715.185 3.575.515 5.545.985v-2.33c0-1.635-.185-3.2-.585-4.655a10.012 10.012 0 0 0 -2.045-3.895c-.985-1.13-2.255-2.005-3.86-2.62-1.605-.62-3.65-1.095-6.09-1.095-3.28 0-6.27.4-9.005.875-2.735.47-4.995 1.02-6.71 1.635l-1.71-11.68c1.785-.62 4.445-1.24 7.875-1.855 3.425-.66 7.11-.95 11.045-.95h.001zm281.51 51.285c4.375 0 7.615-.255 9.875-.695v-14.48c-.8-.22-1.93-.475-3.425-.695a33.813 33.813 0 0 0 -4.96-.365c-1.565 0-3.17.11-4.775.365-1.6.22-3.06.655-4.335 1.275-1.28.62-2.335 1.495-3.1 2.62-.805 1.13-1.165 1.785-1.165 3.495 0 3.345 1.165 5.28 3.28 6.55 2.15 1.31 4.995 1.93 8.605 1.93zm-1.205-51.645c4.7 0 8.674.58 11.884 1.745 3.205 1.165 5.795 2.8 7.69 4.875s3.245 4.915 4.045 7.9c.84 2.985 1.24 6.26 1.24 9.865v36.615c-2.185.47-5.505 1.015-9.95 1.675-4.445.655-9.44.98-14.985.98-3.68 0-7.07-.365-10.094-1.055-3.065-.69-5.65-1.82-7.84-3.385-2.15-1.565-3.825-3.57-5.065-6.04-1.205-2.475-1.825-5.97-1.825-9.61 0-3.495.695-5.715 2.045-8.12 1.38-2.4 3.24-4.365 5.575-5.895 2.37-1.525 5.065-2.62 8.165-3.275s6.345-.98 9.7-.98c1.565 0 3.205.11 4.955.29s3.575.51 5.54.985v-2.33c0-1.64-.18-3.205-.58-4.66a9.977 9.977 0 0 0 -2.045-3.895c-.985-1.13-2.255-2.005-3.86-2.62-1.606-.62-3.65-1.09-6.09-1.09-3.28 0-6.27.4-9.005.87-2.735.475-4.995 1.02-6.71 1.64l-1.71-11.685c1.785-.62 4.445-1.235 7.875-1.855 3.425-.62 7.105-.945 11.045-.945zm-42.8-6.77c4.774 0 8.68-3.86 8.68-8.63 0-4.765-3.866-8.625-8.68-8.625-4.81 0-8.675 3.86-8.675 8.625 0 4.77 3.9 8.63 8.675 8.63zm7.18 70.425h-14.326v-61.44l14.325-2.255v63.695zm-25.116 0c-23.365.11-23.365-18.855-23.365-21.875l-.04-71.045 14.255-2.26v70.61c0 1.715 0 12.56 9.15 12.595zm-46.335-31.445c0-6.155-1.35-11.285-3.974-14.85-2.625-3.605-6.305-5.385-11.01-5.385-4.7 0-8.386 1.78-11.006 5.385-2.625 3.6-3.904 8.695-3.904 14.85 0 6.225 1.315 10.405 3.94 14.01 2.625 3.64 6.305 5.425 11.01 5.425 4.7 0 8.385-1.82 11.01-5.425 2.624-3.64 3.934-7.785 3.934-14.01zm14.58-.035c0 4.805-.69 8.44-2.114 12.41-1.42 3.965-3.425 7.35-6.01 10.155-2.59 2.8-5.69 4.985-9.336 6.515-3.644 1.525-9.26 2.4-12.065 2.4-2.81-.035-8.385-.835-11.995-2.4s-6.71-3.715-9.295-6.515c-2.59-2.805-4.594-6.19-6.054-10.155-1.456-3.97-2.185-7.605-2.185-12.41s.654-9.43 2.114-13.36 3.5-7.28 6.125-10.08c2.625-2.805 5.76-4.955 9.33-6.48 3.61-1.53 7.585-2.255 11.885-2.255 4.305 0 8.275.76 11.92 2.255 3.65 1.525 6.786 3.675 9.336 6.48 2.584 2.8 4.59 6.15 6.05 10.08 1.53 3.93 2.295 8.555 2.295 13.36zm-107.284 0c0 5.965 1.31 12.59 3.935 15.355 2.625 2.77 6.014 4.15 10.175 4.15 2.26 0 4.41-.325 6.414-.945 2.005-.62 3.606-1.35 4.886-2.22v-35.34c-1.02-.22-5.286-1.095-9.41-1.2-5.175-.15-9.11 1.965-11.88 5.345-2.736 3.39-4.12 9.32-4.12 14.855zm39.625 28.095c0 9.72-2.48 16.815-7.476 21.33-4.99 4.51-12.61 6.77-22.89 6.77-3.755 0-11.555-.73-17.79-2.11l2.295-11.285c5.215 1.09 12.105 1.385 15.715 1.385 5.72 0 9.805-1.165 12.245-3.495 2.445-2.33 3.645-5.785 3.645-10.375v-2.33c-1.42.69-3.28 1.385-5.575 2.115-2.295.69-4.955 1.055-7.95 1.055-3.935 0-7.51-.62-10.75-1.86-3.245-1.235-6.055-3.055-8.35-5.46-2.295-2.4-4.12-5.42-5.395-9.025s-1.935-10.045-1.935-14.775c0-4.44.695-10.01 2.046-13.725 1.384-3.71 3.35-6.915 6.014-9.57 2.626-2.655 5.835-4.695 9.59-6.19 3.755-1.49 8.16-2.435 12.935-2.435 4.635 0 8.9.58 13.055 1.275 4.155.69 7.69 1.415 10.57 2.215v56.49z" fill="#5468ff"/></g></svg>
@@ -0,0 +1,7 @@
1
+ ---
2
+ ---
3
+
4
+ @import "amethyst-variables";
5
+ @import "amethyst";
6
+ @import "highlight";
7
+ @import "custom";
data/blog-archive.md ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ layout: posts-archive
3
+ title: Archive
4
+ ---
data/blog.md ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ layout: posts
3
+ title: Blog
4
+ ---
data/docs/config.md ADDED
@@ -0,0 +1,122 @@
1
+ # Amethyst theme configuration
2
+
3
+ ```yaml
4
+ # Site settings
5
+ #
6
+ # Docs: https://jekyllrb.com/docs/configuration/
7
+ title: Amethyst Demo
8
+ description: "An amazing website."
9
+ url: https://example.github.io
10
+ # For pages (not blog posts) this is equivalant to /:title/
11
+ permalink: /:year/:month/:day/:title/
12
+ lang: en
13
+ timezone: UTC
14
+
15
+ # Theme settings
16
+ #
17
+ # Amethyst theme options are documented at:
18
+ # https://github.com/qunitjs/jekyll-theme-amethyst/blob/main/docs/config.md
19
+ #
20
+ amethyst:
21
+ # Default: "/favicon.svg"
22
+ favicon:
23
+ # Default: "/"
24
+ home_href:
25
+ # Horizontal logo with text (SVG, or PNG that is at least 140px tall, for 70px@2x).
26
+ # Set width/height for aspect ratio.
27
+ #
28
+ # Example:
29
+ #
30
+ # ```
31
+ # header_logo:
32
+ # src: /assets/logo-with-text.svg
33
+ # width: 250
34
+ # height: 70
35
+ # ```
36
+ header_logo:
37
+ # Base URI for "Edit this page" link in the footer.
38
+ # When set, this is combined with the relative path to the Markdown file in the repo.
39
+ #
40
+ # Example: https://github.com/qunitjs/qunitjs.com/blob/main/
41
+ edituri_base:
42
+ # Base URI for version links (e.g. "version added") on page-api layouts.
43
+ #
44
+ # Example: https://github.com/qunitjs/qunit/releases/tag/
45
+ release_base:
46
+ # Mastodon account URL (e.g. "https://mastodon.technology/@qunitjs")
47
+ mastodon:
48
+ # Twitter.com username (without "@")
49
+ twitter:
50
+ # GitHub.com organisation or username (without "@")
51
+ github:
52
+ # Gitter.im room (e.g. "qunitjs/qunit")
53
+ gitter:
54
+ # Frontend search powered by Algolia
55
+ algolia:
56
+ # Key for client-side search queries (32-character hex token)
57
+ search_only_api_key:
58
+
59
+ # Defaults to `algolia.application_id` (see below)
60
+ application_id:
61
+
62
+ # Which indexes to use as autocomplete source
63
+ #
64
+ # Defaults to a single source based on `algolia.index_name`,
65
+ # which means the current site only.
66
+ #
67
+ # If there are multiple relates sites that you want to give
68
+ # a unified search experience (e.g. qunitjs.com and api.qunitjs.com)
69
+ # then use this option to explicitly specify the sources.
70
+ # In that case, be sure to set `base` for the "other" sites
71
+ # as the indexes not aware of their full url (indexing happens
72
+ # at built time in CI). Include the "current" site index name as
73
+ # well, but without any `base` so that its results are linked
74
+ # relative, and thus work as expected when testing the site
75
+ # locally, for example.
76
+ #
77
+ # Example: Multiple sources
78
+ #
79
+ # ```
80
+ # sources:
81
+ # - index: qunitjs-api
82
+ # base: https://api.qunitjs.com
83
+ # - index: qunitjs
84
+ # ```
85
+ sources:
86
+
87
+
88
+ # Backend search settings
89
+ #
90
+ # This applies to the 'jekyll algolia' command, which is typically
91
+ # run from an after a commit is merged. The settings are documented at:
92
+ # https://github.com/algolia/jekyll-algolia
93
+ #
94
+ # To learn how to set this up, refer to:
95
+ # https://github.com/qunitjs/jekyll-theme-amethyst/blob/main/docs/getting-started.md#enable-algolia-search
96
+ #
97
+ algolia:
98
+ application_id:
99
+ # Which index_name the 'jekyll algolia' command will create or update.
100
+ index_name:
101
+ # By default only HTML paragraphs are indexed (and headings, albeit through a different mechanism).
102
+ # * Include list items (similar to paragraphs).
103
+ # * Include tables (index per row for better excerpts).
104
+ # * Include <pre> (typically code examples, omit if it "poisons" results too much).
105
+ nodes_to_index: 'p,li,tr,pre'
106
+ # Pages not to suggest in search, e.g. if they are overviews
107
+ # that only point to other pages and have no original content.
108
+ files_to_exclude:
109
+ # - something-overview.md
110
+
111
+
112
+ # Blog archives
113
+ #
114
+ # Docs: https://github.com/jekyll/jekyll-archives/
115
+ jekyll-archives:
116
+ enabled:
117
+ - year
118
+ layout: posts-year
119
+ permalinks:
120
+ year: "/:year/"
121
+
122
+ ```