liddlelab-theme 0.0.1 → 0.0.2
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/LICENSE +0 -0
- data/README.md +0 -0
- data/_includes/adsense-under-header.html +0 -0
- data/_includes/navbar.html +61 -0
- data/_includes/pagination.html +0 -0
- data/_includes/search-lunr.html +0 -0
- data/_layouts/archive.html +0 -0
- data/_layouts/categories.html +0 -0
- data/_layouts/default.html +1 -50
- data/_layouts/tags.html +0 -0
- data/assets/img/android-chrome-192x192.png +0 -0
- data/assets/img/android-chrome-512x512.png +0 -0
- data/assets/img/apple-touch-icon.png +0 -0
- data/assets/img/favicon-16x16.png +0 -0
- data/assets/img/favicon-32x32.png +0 -0
- data/assets/img/logo.png +0 -0
- data/assets/img/sample.jpg +0 -0
- data/assets/img/sample2.jpg +0 -0
- data/assets/js/lunr.js +0 -0
- data/assets/js/lunrsearchengine.js +0 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c358385f8797836484c2fd4451a29569877c835e1bae2127b1198033db051f72
|
4
|
+
data.tar.gz: 396ee77d8072998db6697b7bba6eed374daba585b0ce26a185e6ff08363a1945
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8d4182234538efed42b037e414e82febfde905eff74bf8ea2c28841cd605ed19bb443d1733c42c5f820a83f101f544faf085b02843a6642eebd1410e78a7da6
|
7
|
+
data.tar.gz: bdd93ec1aa98122603524cb4f4616108e07c553e904b7948a00ed987a8beb7821684cc99458a624591ab58146b4d2a53825512b48a463a2b16f12a075bf68fac
|
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 == "/blog/" %}
|
37
|
+
{% elsif pagelink.url == "/404.html" %}
|
38
|
+
{% elsif pagelink.title == nil or pagelink.title == "" %}
|
39
|
+
{% elsif pagelink.title == "Categories" %}
|
40
|
+
{% elsif pagelink.title == "Tags" %}
|
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
|
+
================================================== -->
|
data/_includes/pagination.html
CHANGED
File without changes
|
data/_includes/search-lunr.html
CHANGED
File without changes
|
data/_layouts/archive.html
CHANGED
File without changes
|
data/_layouts/categories.html
CHANGED
File without changes
|
data/_layouts/default.html
CHANGED
@@ -30,56 +30,7 @@
|
|
30
30
|
{% capture layout %}{% if page.layout %}layout-{{ page.layout }}{% endif %}{% endcapture %}
|
31
31
|
|
32
32
|
<body class="{{layout}}">
|
33
|
-
|
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
|
data/assets/img/sample.jpg
CHANGED
File without changes
|
data/assets/img/sample2.jpg
CHANGED
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.
|
4
|
+
version: 0.0.2
|
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.
|
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: []
|