jekyll-theme-horizon-flow 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +675 -0
- data/_config.yml +103 -0
- data/_includes/404.html +26 -0
- data/_includes/footer.html +104 -0
- data/_includes/header.html +23 -0
- data/_includes/read_time.html +39 -0
- data/_includes/toc.html +182 -0
- data/_layouts/archive.html +82 -0
- data/_layouts/categories.html +85 -0
- data/_layouts/default.html +26 -0
- data/_layouts/home.html +58 -0
- data/_layouts/post.html +73 -0
- data/_layouts/search.html +45 -0
- data/_layouts/tags.html +77 -0
- data/_posts/2021-01-01-markdown-test-page.md +179 -0
- data/_posts/2022-01-18-pirates.md +44 -0
- data/_posts/2022-06-21-leopards.md +42 -0
- data/_posts/2022-12-12-chatgpt-testpost-all-markdown-elements.md +121 -0
- data/_posts/2023-06-01-getting-started-with-jekyll.md +49 -0
- data/_posts/2023-06-03-customizing-your-jekyll-site.md +25 -0
- data/_posts/2023-06-06-welcome-to-jekyll.md +29 -0
- data/_posts/2023-07-13-title-for-champions.md +284 -0
- data/_sass/default/_base.scss +31 -0
- data/_sass/default/_footer.scss +162 -0
- data/_sass/default/_header.scss +62 -0
- data/_sass/external/_highlighter_rougify_base16dark.scss +84 -0
- data/_sass/external/_normalize.scss +349 -0
- data/_sass/functions/_mixins.scss +192 -0
- data/_sass/functions/_values.scss +21 -0
- data/_sass/jekyll-theme-horizon-flow.scss +16 -0
- data/_sass/layouts/_archive.scss +89 -0
- data/_sass/layouts/_categories.scss +93 -0
- data/_sass/layouts/_home.scss +120 -0
- data/_sass/layouts/_post.scss +322 -0
- data/_sass/layouts/_search.scss +66 -0
- data/_sass/layouts/_tags.scss +91 -0
- data/assets/search.json +20 -0
- data/assets/style.scss +6 -0
- metadata +182 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 23b04ffbae4c3fa6ca250c7a884e5b3cccda2510fba3822ca99aa0cef512ce02
|
4
|
+
data.tar.gz: 877f81aa52faee7fc9a0dd433b1de0ce163912a7fbb0d4f096a1e81c1ae16334
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: cb9f6b187749923d41d0cb363673cf898cdb8e4b850a4bf466a432104b53e73b286d13905701a27fa6a7522dc3683505feef721801de242a59933da837a949aa
|
7
|
+
data.tar.gz: 8862bb2a54f1868d0427b35bffe3c51979689baccab5c418f149420c73e564892bc79a97b7524b817bbf6832dfcfbbaa0c26e322ca740311cb48e45c6eab0e33
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2023
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|