jekyll-theme-horizon-flow 0.1.1 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +31 -91
- data/_config.yml +4 -14
- data/_includes/footer.html +15 -15
- data/_includes/header.html +1 -1
- data/_layouts/archive.html +7 -11
- data/_layouts/categories.html +6 -12
- data/_layouts/default.html +1 -1
- data/_layouts/home.html +6 -5
- data/_layouts/post.html +2 -2
- data/_layouts/search.html +3 -9
- data/_layouts/tags.html +7 -10
- data/_posts/2021-01-01-markdown-test-page.md +3 -0
- data/_posts/2022-12-12-chatgpt-testpost-all-markdown-elements.md +1 -1
- data/_posts/2023-07-13-title-for-champions.md +1 -1
- data/_sass/default/_base.scss +33 -6
- data/_sass/default/_footer.scss +77 -47
- data/_sass/default/_header.scss +6 -12
- data/_sass/external/_normalize.scss +3 -0
- data/_sass/functions/_mixins.scss +94 -7
- data/_sass/functions/_values.scss +2 -0
- data/_sass/layouts/_archive.scss +4 -6
- data/_sass/layouts/_categories.scss +5 -4
- data/_sass/layouts/_home.scss +19 -39
- data/_sass/layouts/_post.scss +52 -18
- data/_sass/layouts/_tags.scss +5 -0
- data/assets/search.json +2 -2
- metadata +7 -6
data/assets/search.json
CHANGED
@@ -6,8 +6,8 @@
|
|
6
6
|
{% if post.searchable != false %}
|
7
7
|
{
|
8
8
|
"title" : "{{ post.title | escape }}",
|
9
|
-
"summary" :
|
10
|
-
"url" : "{{ site.baseurl }}{{ post.url }}",
|
9
|
+
"summary" : {{ post.content | strip_html | truncatewords: 50 | jsonify }},
|
10
|
+
"url" : "{{site.url}}{{ site.baseurl }}{{ post.url }}",
|
11
11
|
"category" : "{{ post.categories | join: ', ' }}",
|
12
12
|
"tags" : "{{ post.tags | join: ', ' }}",
|
13
13
|
"keywords" : "{{ post.search_keywords }}",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-horizon-flow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Markus Schiller
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -175,8 +175,9 @@ requirements: []
|
|
175
175
|
rubygems_version: 3.3.5
|
176
176
|
signing_key:
|
177
177
|
specification_version: 4
|
178
|
-
summary: '"Horizon-Flow" is a
|
179
|
-
palette of blue, gray, and orange. It features a clean, sidebar-free layout,
|
180
|
-
all content in a single, flowing main container. The header remains fixed
|
181
|
-
scrolling, ensuring easy navigation.
|
178
|
+
summary: '"Horizon-Flow" is a mobile friendly Jekyll theme characterized by a serene
|
179
|
+
color palette of blue, gray, and orange. It features a clean, sidebar-free layout,
|
180
|
+
keeping all content in a single, flowing main container. The header remains fixed
|
181
|
+
even while scrolling, ensuring easy navigation. Allows Custom content to be displaye
|
182
|
+
in the footer and footer-sidebar.'
|
182
183
|
test_files: []
|