jekyll-bear-theme 0.1.2 → 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 +4 -3
- data/_includes/header.html +3 -3
- 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: 8a6684894aef6a67f12085e279c94cd25013f7824c2092a05c9487791111f814
|
|
4
|
+
data.tar.gz: f519896b4570056f90effa788d080d05e50447810f798da41952a6d4a480ace8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9d70e7d57fa4a274c1d31a88ee51df5b49e4cfab8f86e5f4f298e4b1543c754f4af4784b5ef8163c13b64036eedc773897b6929ef3e93b529da51aa10629aaf
|
|
7
|
+
data.tar.gz: 777acb75189886779d225e5a6fb20a96322bc32bc8c29e782f43a3983ff26152587454cbaef01b0379e741c5d06568b5b4c77b90d9349b823734f29bf9108a13
|
data/_config.yml
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
title: jekyllBear
|
|
5
5
|
description: a minimal, text focused blog theme
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
# baseurl: "/jekyllBear" # the subpath of your site, e.g. /blog/
|
|
7
|
+
url: "https://knhash.in/jekyllBear" # the base hostname & protocol for your site
|
|
8
|
+
# host: 0.0.0.0
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
#########################
|
|
@@ -43,7 +44,7 @@ defaults:
|
|
|
43
44
|
values:
|
|
44
45
|
layout: tagged
|
|
45
46
|
|
|
46
|
-
baseurl: ""
|
|
47
|
+
# baseurl: ""
|
|
47
48
|
permalink: /blog/:slug
|
|
48
49
|
timezone: America/New_York
|
|
49
50
|
future: false
|
data/_includes/header.html
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<h2 class="title">{{ site.title }}</h2>
|
|
2
2
|
<nav>
|
|
3
|
-
<a href="
|
|
4
|
-
<a href="{{ site.Blog }}">Blog</a>
|
|
3
|
+
<a href="{{ site.url }}">Home</a>
|
|
4
|
+
<a href="{{ site.url }}{{ site.Blog }}">Blog</a>
|
|
5
5
|
|
|
6
6
|
{% for link in site.links %}
|
|
7
|
-
<a href="{{ link[1] }}">{{ link[0] }}</a>
|
|
7
|
+
<a href="{{ site.url }}{{ link[1] }}">{{ link[0] }}</a>
|
|
8
8
|
{% endfor %}
|
|
9
9
|
|
|
10
10
|
{% for link in site.special_links %}
|