jekyll-theme-lydde 0.1.1 → 0.1.3
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.
- checksums.yaml +4 -4
- data/_config.yml +116 -0
- data/_includes/analytics.liquid +12 -0
- data/_includes/breadcrumb.liquid +39 -17
- data/_includes/footer.liquid +48 -44
- data/_includes/header.liquid +90 -106
- data/_includes/hero.liquid +39 -0
- data/_includes/scripts.liquid +2 -2
- data/_includes/seo.liquid +148 -0
- data/_includes/social.liquid +14 -0
- data/_includes/structure.liquid +63 -0
- data/_includes/todo/hierachy.liquid +22 -0
- data/_layouts/default.html +43 -9
- data/_layouts/home.html +5 -1
- data/_layouts/page.html +15 -7
- data/_layouts/post.html +7 -7
- data/_sass/variables.scss +3 -2
- data/_sass/website.scss +163 -5
- data/assets/resources/site/debug.json +5 -0
- data/assets/resources/site/humans.txt +14 -14
- data/assets/resources/site/{sitemap.md → sitemap.markdown} +1 -2
- data/assets/styles/main.scss +5 -0
- data/assets/videos/demo.mp4 +0 -0
- metadata +13 -5
- data/_includes/menu.liquid +0 -26
- /data/assets/resources/site/{404.md → 404.markdown} +0 -0
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-lydde
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MrKoubyak
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -33,17 +33,23 @@ extra_rdoc_files: []
|
|
33
33
|
files:
|
34
34
|
- LICENSE.txt
|
35
35
|
- README.md
|
36
|
+
- _config.yml
|
37
|
+
- _includes/analytics.liquid
|
36
38
|
- _includes/breadcrumb.liquid
|
37
39
|
- _includes/footer.liquid
|
38
40
|
- _includes/header.liquid
|
41
|
+
- _includes/hero.liquid
|
39
42
|
- _includes/info.liquid
|
40
|
-
- _includes/menu.liquid
|
41
43
|
- _includes/post-author.liquid
|
42
44
|
- _includes/post-categories.liquid
|
43
45
|
- _includes/post-share.liquid
|
44
46
|
- _includes/post-tags.liquid
|
45
47
|
- _includes/post-toc.liquid
|
46
48
|
- _includes/scripts.liquid
|
49
|
+
- _includes/seo.liquid
|
50
|
+
- _includes/social.liquid
|
51
|
+
- _includes/structure.liquid
|
52
|
+
- _includes/todo/hierachy.liquid
|
47
53
|
- _layouts/default.html
|
48
54
|
- _layouts/home.html
|
49
55
|
- _layouts/page.html
|
@@ -163,11 +169,12 @@ files:
|
|
163
169
|
- assets/images/tags.jpeg
|
164
170
|
- assets/logo.png
|
165
171
|
- assets/lydde.png
|
166
|
-
- assets/resources/site/404.
|
172
|
+
- assets/resources/site/404.markdown
|
173
|
+
- assets/resources/site/debug.json
|
167
174
|
- assets/resources/site/humans.txt
|
168
175
|
- assets/resources/site/robots.txt
|
169
176
|
- assets/resources/site/site.webmanifest
|
170
|
-
- assets/resources/site/sitemap.
|
177
|
+
- assets/resources/site/sitemap.markdown
|
171
178
|
- assets/resources/site/sitemap.xml
|
172
179
|
- assets/scripts/bootstrap/5.3.2/bootstrap.bundle.js
|
173
180
|
- assets/scripts/bootstrap/5.3.2/bootstrap.bundle.js.map
|
@@ -183,6 +190,7 @@ files:
|
|
183
190
|
- assets/scripts/bootstrap/5.3.2/bootstrap.min.js.map
|
184
191
|
- assets/scripts/main.js
|
185
192
|
- assets/styles/main.scss
|
193
|
+
- assets/videos/demo.mp4
|
186
194
|
homepage: https://lyddegroup.com/jekyll-theme-lydde/
|
187
195
|
licenses:
|
188
196
|
- MIT
|
data/_includes/menu.liquid
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
{% assign pages = site.pages | where_exp: 'doc', 'doc.url != "/404.html"' | where_exp: 'doc', 'doc.title' %}
|
2
|
-
{% assign i = 1 %}
|
3
|
-
|
4
|
-
<ul>
|
5
|
-
{%- for page in pages -%}
|
6
|
-
|
7
|
-
{% assign crumbs = page.url | remove: '/index.html' | split: '/' %}
|
8
|
-
{% assign size = crumbs | size | minus: 1 %}
|
9
|
-
|
10
|
-
{% assign orderedPages = crumbs[i] | group %}
|
11
|
-
{{ crumbs[i] }}
|
12
|
-
|
13
|
-
|
14
|
-
{% capture myLoop %}
|
15
|
-
<li>{{ page.title }} - {{ size }} - {{ page.url }}</li>
|
16
|
-
{% endcapture %}
|
17
|
-
|
18
|
-
|
19
|
-
{% for crumb in crumbs %}
|
20
|
-
{% unless crumb == "" %}
|
21
|
-
{{ myLoop }}
|
22
|
-
{% endunless %}
|
23
|
-
{% endfor %}
|
24
|
-
|
25
|
-
{%- endfor -%}
|
26
|
-
</ul>
|
File without changes
|