liddlelab-theme 0.0.1 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2ab4bf64d80bd50cd89c00e5fee43fbda8aea04b68413012356bf596ebe486e6
4
- data.tar.gz: a696428a6295fd1907a3b821918d52cd1238aa66734e115452116c07a84a475b
3
+ metadata.gz: ad6069cda5f397b2a724d02d4a3c942f0a25673b7d94227dad5cac066370dc3c
4
+ data.tar.gz: 7ef5f11d0cf14249c9c3f022f072c3805f855844648f168b96c7adfbd2224f6c
5
5
  SHA512:
6
- metadata.gz: 05acc23a6c33f7e22b0a7f9c70aaa17e5800cfb444aeca46c13d2c01ff70c434268f1915d028d34a727d176dbc6e8a591149a916f10b901ac77a53149302e347
7
- data.tar.gz: 2b8ac14f5f0f53d7c73cb681d2993523ce186461c7ab8a647b5953c38bac41e2d0830089af676af4a3a95beceb18d0a57e6069bafb2c09af75569bb9d47349fc
6
+ metadata.gz: e7f965639c9f9161bc0db2b5d835d8ac3b15fc47f8e47053a7b84bbdb1a4325cc7c76ab82010a8d19e16f8ca3ab2a075eba2a16e32c54941fa51d60cb653cafe
7
+ data.tar.gz: 76eee0f604a07d1e44b9fc4b90aed18fd3ca94263df3d223c94ad47260894fbdbb2cc847bc5a2767f3d3c3ed61167ae6e1b35f63176c43ff213ec2963a85f0b5
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
File without changes
File without changes
@@ -0,0 +1,61 @@
1
+ <nav class="navbar navbar-expand-lg navbar-dark fixed-top">
2
+
3
+ <a class="navbar-brand" href="{{ site.baseurl }}/index.html">
4
+ <h1 class="sitetitle">{{ site.name }} >_</h1>
5
+ </a>
6
+
7
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#liddlenavbar"
8
+ aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
9
+ <span class="navbar-toggler-icon"></span>
10
+ </button>
11
+
12
+ <div class="collapse navbar-collapse" id="liddlenavbar">
13
+
14
+ <!-- Begin Menu -->
15
+
16
+ <ul class="navbar-nav ml-auto">
17
+ {% if page.url == "/" %}
18
+ <li class="nav-item active">
19
+ {% else %}
20
+ <li class="nav-item">
21
+ {% endif %}
22
+
23
+ <a class="nav-link" href="{{ site.baseurl }}/">Home</a>
24
+ </li>
25
+
26
+ {% if page.url == "/blog/" %}
27
+ <li class="nav-item active">
28
+ {% else %}
29
+ <li class="nav-item">
30
+ {% endif %}
31
+ <a class="nav-link" href="{{ site.baseurl }}/blog">Blog</a>
32
+ </li>
33
+
34
+ {% for pagelink in site.pages %}
35
+ {% if pagelink.url == "/" %}
36
+ {% elsif pagelink.url == "/404.html" %}
37
+ {% elsif pagelink.title == nil or pagelink.title == "" %}
38
+ {% elsif pagelink.title == "Categories" %}
39
+ {% elsif pagelink.title == "Tags" %}
40
+ {% elsif pagelink.url contains "/blog/" %}
41
+ {% elsif pagelink.url contains "/category/" %}
42
+ {% else %}
43
+ {% if page.url == pagelink.url %}
44
+ <li class="nav-item active">
45
+ {% else %}
46
+ <li class="nav-item">
47
+ {% endif %}
48
+ <a class="nav-link" href="{{ site.baseurl }}{{ pagelink.url }}">{{ pagelink.title }}</a>
49
+ </li>
50
+ {% endif %}
51
+
52
+ {% endfor %}
53
+
54
+ </ul>
55
+
56
+ <!-- End Menu -->
57
+
58
+ </div>
59
+ </nav>
60
+ <!-- End Navigation
61
+ ================================================== -->
File without changes
File without changes
File without changes
File without changes
@@ -30,56 +30,7 @@
30
30
  {% capture layout %}{% if page.layout %}layout-{{ page.layout }}{% endif %}{% endcapture %}
31
31
 
32
32
  <body class="{{layout}}">
33
- <nav class="navbar navbar-expand-lg navbar-dark fixed-top">
34
-
35
- <a class="navbar-brand" href="{{ site.baseurl }}/index.html">
36
- <h1 class="sitetitle">{{ site.name }} >_</h1>
37
- </a>
38
-
39
- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#liddlenavbar"
40
- aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
41
- <span class="navbar-toggler-icon"></span>
42
- </button>
43
-
44
- <div class="collapse navbar-collapse" id="liddlenavbar">
45
-
46
- <!-- Begin Menu -->
47
-
48
- <ul class="navbar-nav ml-auto">
49
-
50
- {% if page.url == "/" %}
51
- <li class="nav-item active">
52
- {% else %}
53
- <li class="nav-item">
54
- {% endif %}
55
-
56
- <a class="nav-link" href="{{ site.baseurl }}/">Home</a>
57
- </li>
58
-
59
- {% if page.url == "/blog" %}
60
- <li class="nav-item active">
61
- {% else %}
62
- <li class="nav-item">
63
- {% endif %}
64
- <a class="nav-link" href="{{ site.baseurl }}/blog">Blog</a>
65
- </li>
66
-
67
- {% if page.url == "/about" %}
68
- <li class="nav-item active">
69
- {% else %}
70
- <li class="nav-item">
71
- {% endif %}
72
- <a class="nav-link" href="{{ site.baseurl }}/about">About</a>
73
- </li>
74
- </ul>
75
-
76
- <!-- End Menu -->
77
-
78
- </div>
79
- </nav>
80
- <!-- End Navigation
81
- ================================================== -->
82
-
33
+ {% include navbar.html %}
83
34
  <div class="site-content">
84
35
 
85
36
  <div class="container">
data/_layouts/tags.html CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/assets/img/logo.png CHANGED
File without changes
File without changes
File without changes
data/assets/js/lunr.js CHANGED
File without changes
File without changes
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: liddlelab-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Liddle
8
+ autorequire:
8
9
  bindir: bin
9
10
  cert_chain: []
10
11
  date: 2025-03-24 00:00:00.000000000 Z
@@ -147,6 +148,7 @@ files:
147
148
  - _includes/adsense-under-header.html
148
149
  - _includes/featuredbox.html
149
150
  - _includes/giscus.html
151
+ - _includes/navbar.html
150
152
  - _includes/pagination.html
151
153
  - _includes/postbox.html
152
154
  - _includes/search-lunr.html
@@ -175,6 +177,7 @@ homepage: https://liddlelaboratory.com
175
177
  licenses:
176
178
  - MIT
177
179
  metadata: {}
180
+ post_install_message:
178
181
  rdoc_options: []
179
182
  require_paths:
180
183
  - lib
@@ -189,7 +192,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
192
  - !ruby/object:Gem::Version
190
193
  version: '0'
191
194
  requirements: []
192
- rubygems_version: 3.6.6
195
+ rubygems_version: 3.4.10
196
+ signing_key:
193
197
  specification_version: 4
194
198
  summary: Jekyll theme for Liddlelaboratory.com.
195
199
  test_files: []