jekyll-theme-doctored 0.3.8 → 0.3.9
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/_includes/foot.html +5 -4
- data/_includes/palettes/main.amber.html +1 -1
- data/_includes/palettes/main.blue.html +1 -1
- data/_includes/palettes/main.cyan.html +1 -1
- data/_includes/palettes/main.emerald.html +1 -1
- data/_includes/palettes/main.fuchsia.html +1 -1
- data/_includes/palettes/main.gray.html +1 -1
- data/_includes/palettes/main.green.html +1 -1
- data/_includes/palettes/main.indigo.html +1 -1
- data/_includes/palettes/main.lime.html +1 -1
- data/_includes/palettes/main.neutral.html +1 -1
- data/_includes/palettes/main.orange.html +1 -1
- data/_includes/palettes/main.pink.html +1 -1
- data/_includes/palettes/main.purple.html +1 -1
- data/_includes/palettes/main.red.html +1 -1
- data/_includes/palettes/main.rose.html +1 -1
- data/_includes/palettes/main.sky.html +1 -1
- data/_includes/palettes/main.slate.html +1 -1
- data/_includes/palettes/main.stone.html +1 -1
- data/_includes/palettes/main.teal.html +1 -1
- data/_includes/palettes/main.violet.html +1 -1
- data/_includes/palettes/main.yellow.html +1 -1
- data/_includes/palettes/main.zinc.html +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c46d9cd94255ff8429728fdcb2b99f91b446cd2e4014ccef6eaae3134214440f
|
|
4
|
+
data.tar.gz: a7c030856f57735a7328ed13262e2288bd433824d264a7339c9b5433d4b64736
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37f66377a5464d186d26295e14b25e31903063981440d17fa0c1f63001f99493c331faa40d72a0e377cd9ed2fe20e5ca011b502cf1d9ab42f5ce105faad41fbe
|
|
7
|
+
data.tar.gz: 4ddbe59647a95b640507ab77571a835ec7546304efe1f37f3df4fa932c1ac7e410935432c7bd4c4bd89465f6c9abdf17c558c9b0a42c4ce56dc4472d070f5b78
|
data/_includes/foot.html
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
<div class="flex flex-row justify-between w-full px-5 md:px-10 gap-8">
|
|
2
2
|
<div class="flex flex-col space-y-4 sm:flex-grow max-w-[50%] font-sans">
|
|
3
|
-
<h3 class="block
|
|
3
|
+
<h3 class="block gap-2 items-center">
|
|
4
4
|
{% if site.data.foot.logo %}
|
|
5
|
-
<img src="{{ site.data.foot.logo | relative_url }}" alt="logo" class="h-6 w-6">
|
|
5
|
+
<span class="text-nowrap inline"><img src="{{ site.data.foot.logo | relative_url }}" alt="logo" class="h-6 w-6">
|
|
6
|
+
{{ site.data.foot.title }} |</span>
|
|
6
7
|
{% else %}
|
|
7
|
-
<span>{{ site.data.foot.emoji }}
|
|
8
|
+
<span class="text-nowrap inline">{{ site.data.foot.emoji }} {{ site.data.foot.title }} |</span>
|
|
8
9
|
{% endif %}
|
|
9
|
-
|
|
10
|
+
<span class="dark:text-primary-600 text-primary-700">{{ site.description }}</span>
|
|
10
11
|
</h3>
|
|
11
12
|
<div class="flex flex-row flex-wrap gap-4 dark:text-primary-600">
|
|
12
13
|
<label for="theme">Color mode:</label>
|