reality-blue-jekyll-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/_includes/_links.html +5 -1
- data/_layouts/default.html +4 -4
- data/_layouts/page.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: 713fc3ad987a3230278e8d2145de72d4a12360ba7b2743d77d6e0fb8069307ed
|
|
4
|
+
data.tar.gz: 18f3b27239df00fc81e5304bc809448ee56c5820053b586b8873c6f7789b9fe6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0735e04dcd75d5e5df740659e8bd13591ec742887a46e16af60647cf45b1d854d9ec0419ebb773ab1c9deaed51b18a9a64c470c95b7fddc766d45b750a018a27
|
|
7
|
+
data.tar.gz: '0182bdcfd2e3a4993c7ad5f946965f19b464a4a0a3d98523fae8b005d75b286ccc8dba0f35bf028b0670585a978647e5157aeb1cadb87d109eeaeb60f52bf5cd'
|
data/_includes/_links.html
CHANGED
data/_layouts/default.html
CHANGED
|
@@ -4,17 +4,17 @@
|
|
|
4
4
|
<head>
|
|
5
5
|
{% assign title = page.title | default: site.title | escape %}
|
|
6
6
|
<title>{{ title }}</title>
|
|
7
|
-
<link rel="icon" type="image/png" href="/assets/img/favicon.ico">
|
|
8
|
-
<link rel="stylesheet" href="/css/style.css">
|
|
7
|
+
<link rel="icon" type="image/png" href="{{ '/assets/img/favicon.ico' | relative_url }}">
|
|
8
|
+
<link rel="stylesheet" href="{{ '/css/style.css' | relative_url }}">
|
|
9
9
|
<meta charset="utf-8">
|
|
10
10
|
<meta name="author" content="{{ site.author | escape }}">
|
|
11
11
|
<meta property="og:type" content="article">
|
|
12
12
|
<meta property="og:title" content="{{ site.title | escape }}">
|
|
13
|
-
<meta property="og:url" content="{{ site.
|
|
13
|
+
<meta property="og:url" content="{{ site.baseurl | escape }}">
|
|
14
14
|
<meta property="og:site_name" content="{{ site.title | escape }}">
|
|
15
15
|
|
|
16
16
|
<!-- Webmaster Tools verfication -->
|
|
17
|
-
<link rel="canonical" href="{{ site.
|
|
17
|
+
<link rel="canonical" href="{{ site.baseurl | escape }}">
|
|
18
18
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
19
19
|
|
|
20
20
|
</head>
|
data/_layouts/page.html
CHANGED
|
@@ -5,7 +5,7 @@ layout: default
|
|
|
5
5
|
<body>
|
|
6
6
|
<div id="main" class="container main">
|
|
7
7
|
<div id="title" class="container">
|
|
8
|
-
<h3 class="name"><a href="/index" class="home">Back to home</a></h3>
|
|
8
|
+
<h3 class="name"><a href="{{ '/index' | relative_url }}" class="home">Back to home</a></h3>
|
|
9
9
|
</div>
|
|
10
10
|
<div id="content" class="content">
|
|
11
11
|
{{ content }}
|