jekyll-theme-horizon-flow 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +675 -0
  4. data/_config.yml +103 -0
  5. data/_includes/404.html +26 -0
  6. data/_includes/footer.html +104 -0
  7. data/_includes/header.html +23 -0
  8. data/_includes/read_time.html +39 -0
  9. data/_includes/toc.html +182 -0
  10. data/_layouts/archive.html +82 -0
  11. data/_layouts/categories.html +85 -0
  12. data/_layouts/default.html +26 -0
  13. data/_layouts/home.html +58 -0
  14. data/_layouts/post.html +73 -0
  15. data/_layouts/search.html +45 -0
  16. data/_layouts/tags.html +77 -0
  17. data/_posts/2021-01-01-markdown-test-page.md +179 -0
  18. data/_posts/2022-01-18-pirates.md +44 -0
  19. data/_posts/2022-06-21-leopards.md +42 -0
  20. data/_posts/2022-12-12-chatgpt-testpost-all-markdown-elements.md +121 -0
  21. data/_posts/2023-06-01-getting-started-with-jekyll.md +49 -0
  22. data/_posts/2023-06-03-customizing-your-jekyll-site.md +25 -0
  23. data/_posts/2023-06-06-welcome-to-jekyll.md +29 -0
  24. data/_posts/2023-07-13-title-for-champions.md +284 -0
  25. data/_sass/default/_base.scss +31 -0
  26. data/_sass/default/_footer.scss +162 -0
  27. data/_sass/default/_header.scss +62 -0
  28. data/_sass/external/_highlighter_rougify_base16dark.scss +84 -0
  29. data/_sass/external/_normalize.scss +349 -0
  30. data/_sass/functions/_mixins.scss +192 -0
  31. data/_sass/functions/_values.scss +21 -0
  32. data/_sass/jekyll-theme-horizon-flow.scss +16 -0
  33. data/_sass/layouts/_archive.scss +89 -0
  34. data/_sass/layouts/_categories.scss +93 -0
  35. data/_sass/layouts/_home.scss +120 -0
  36. data/_sass/layouts/_post.scss +322 -0
  37. data/_sass/layouts/_search.scss +66 -0
  38. data/_sass/layouts/_tags.scss +91 -0
  39. data/assets/search.json +20 -0
  40. data/assets/style.scss +6 -0
  41. metadata +182 -0
@@ -0,0 +1,91 @@
1
+ #tags {
2
+ width: 100%;
3
+ }
4
+
5
+ #tags h1 {
6
+ @include page_title();
7
+ }
8
+
9
+ /* ---------------------------------------------------- */
10
+ /* ---------------------------------------------------- */
11
+ /* Style the archive list */
12
+ /* ---------------------------------------------------- */
13
+ /* ---------------------------------------------------- */
14
+
15
+
16
+ .tags_all {
17
+ @include showlinks(4);
18
+ }
19
+
20
+ .tags_all1 {
21
+ @include showlinks(1);
22
+ }
23
+
24
+ .tags_all2 {
25
+ @include showlinks(2);
26
+ }
27
+
28
+ .tags_all3 {
29
+ @include showlinks(3);
30
+ }
31
+
32
+ .tags_all4 {
33
+ @include showlinks(4);
34
+ }
35
+
36
+ .tags_all5 {
37
+ @include showlinks(5);
38
+ }
39
+
40
+
41
+
42
+ /* ---------------------------------------------------- */
43
+ /* ---------------------------------------------------- */
44
+ /* Only show posts when archive is selected */
45
+ /* ---------------------------------------------------- */
46
+ /* ---------------------------------------------------- */
47
+
48
+ .tag_posts {
49
+ display: none;
50
+
51
+ h2 {
52
+ margin-bottom: 2em;
53
+ }
54
+ }
55
+
56
+ .tag_posts:target {
57
+ display: block;
58
+ }
59
+
60
+ /* Hide the anchor from the URL bar */
61
+ #tags :target::before {
62
+ content: "";
63
+ display: block;
64
+ height: 100px;
65
+ margin-top: -100px;
66
+ visibility: hidden;
67
+ }
68
+
69
+
70
+ /* ---------------------------------------------------- */
71
+ /* ---------------------------------------------------- */
72
+ /* results Style */
73
+ /* ---------------------------------------------------- */
74
+ /* ---------------------------------------------------- */
75
+
76
+
77
+ .tags_findresult {
78
+ @include findresults();
79
+ }
80
+
81
+ .tags_date {
82
+ @include findresults_date();
83
+ }
84
+
85
+ .tags_day {
86
+ @include findresults_day();
87
+ }
88
+
89
+ .tags_summary {
90
+ @include findresults_summary();
91
+ }
@@ -0,0 +1,20 @@
1
+ ---
2
+ ---
3
+
4
+ [
5
+ {% for post in site.posts %}
6
+ {% if post.searchable != false %}
7
+ {
8
+ "title" : "{{ post.title | escape }}",
9
+ "summary" : "{{ post.content | markdownify | strip_html | truncatewords: 50 }}",
10
+ "url" : "{{ site.baseurl }}{{ post.url }}",
11
+ "category" : "{{ post.categories | join: ', ' }}",
12
+ "tags" : "{{ post.tags | join: ', ' }}",
13
+ "keywords" : "{{ post.search_keywords }}",
14
+ "date" : "{{ post.date }}",
15
+ "date_day" : "{{ post.date | date: "%d" }}",
16
+ "date_my" : "{{ post.date | date: "%b/%Y" }}"
17
+ }{% unless forloop.last %},{% endunless %}
18
+ {% endif %}
19
+ {% endfor %}
20
+ ]
data/assets/style.scss ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ ---
3
+
4
+ @charset "utf-8";
5
+
6
+ @import "jekyll-theme-horizon-flow.scss";
metadata ADDED
@@ -0,0 +1,182 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-horizon-flow
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Markus Schiller
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-09-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-feed
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.17.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.17.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-paginate
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.1.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.1.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-sitemap
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 1.4.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.4.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-seo-tag
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 2.8.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 2.8.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: jekyll-sass-converter
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 3.0.0
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 3.0.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: bundler
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description:
112
+ email:
113
+ executables: []
114
+ extensions: []
115
+ extra_rdoc_files: []
116
+ files:
117
+ - LICENSE.txt
118
+ - README.md
119
+ - _config.yml
120
+ - _includes/404.html
121
+ - _includes/footer.html
122
+ - _includes/header.html
123
+ - _includes/read_time.html
124
+ - _includes/toc.html
125
+ - _layouts/archive.html
126
+ - _layouts/categories.html
127
+ - _layouts/default.html
128
+ - _layouts/home.html
129
+ - _layouts/post.html
130
+ - _layouts/search.html
131
+ - _layouts/tags.html
132
+ - _posts/2021-01-01-markdown-test-page.md
133
+ - _posts/2022-01-18-pirates.md
134
+ - _posts/2022-06-21-leopards.md
135
+ - _posts/2022-12-12-chatgpt-testpost-all-markdown-elements.md
136
+ - _posts/2023-06-01-getting-started-with-jekyll.md
137
+ - _posts/2023-06-03-customizing-your-jekyll-site.md
138
+ - _posts/2023-06-06-welcome-to-jekyll.md
139
+ - _posts/2023-07-13-title-for-champions.md
140
+ - _sass/default/_base.scss
141
+ - _sass/default/_footer.scss
142
+ - _sass/default/_header.scss
143
+ - _sass/external/_highlighter_rougify_base16dark.scss
144
+ - _sass/external/_normalize.scss
145
+ - _sass/functions/_mixins.scss
146
+ - _sass/functions/_values.scss
147
+ - _sass/jekyll-theme-horizon-flow.scss
148
+ - _sass/layouts/_archive.scss
149
+ - _sass/layouts/_categories.scss
150
+ - _sass/layouts/_home.scss
151
+ - _sass/layouts/_post.scss
152
+ - _sass/layouts/_search.scss
153
+ - _sass/layouts/_tags.scss
154
+ - assets/search.json
155
+ - assets/style.scss
156
+ homepage: https://github.com/papierkorp/jekyll-theme-horizon-flow
157
+ licenses:
158
+ - MIT
159
+ metadata: {}
160
+ post_install_message:
161
+ rdoc_options: []
162
+ require_paths:
163
+ - lib
164
+ required_ruby_version: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - ">="
167
+ - !ruby/object:Gem::Version
168
+ version: '0'
169
+ required_rubygems_version: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ requirements: []
175
+ rubygems_version: 3.3.5
176
+ signing_key:
177
+ specification_version: 4
178
+ summary: '"Horizon-Flow" is a minimalist Jekyll theme characterized by a serene color
179
+ palette of blue, gray, and orange. It features a clean, sidebar-free layout, keeping
180
+ all content in a single, flowing main container. The header remains fixed even while
181
+ scrolling, ensuring easy navigation.'
182
+ test_files: []