jekyll-theme-pdz 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/head.html +8 -8
- data/_includes/header.html +3 -3
- data/_includes/post-head.html +8 -8
- 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: 9592575651775817383eae62d40aa8dfd6930b27fc0a99e19c5bd9a4cdcc7404
|
|
4
|
+
data.tar.gz: c29c8000f6027a0d142fc25305d631c75b12d94624de097fa669da14abbfd0a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 167c4f4965559f9ea9b44a25c65742d80f69ac641424da41ca10c6b123ec016e061c0a521c00973c7baef2d82b26e00c0b3332b6fd6298064b9d79d59a94b1f0
|
|
7
|
+
data.tar.gz: 708b2b4fa38faaa18ed219749b2e585b756d228998d9096bb0282ce3992ccf6d14f8dfc41d1aaef958297f356f767861d0a6cd4dfd43ecb452e8ea72ed26dc52
|
data/_includes/head.html
CHANGED
|
@@ -8,20 +8,20 @@
|
|
|
8
8
|
<!-- Open Graph -->
|
|
9
9
|
<meta property="og:title" content="{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}">
|
|
10
10
|
<meta property="og:type" content="website">
|
|
11
|
-
<meta property="og:url" content="{{
|
|
11
|
+
<meta property="og:url" content="{{ '/' | absolute_url }}">
|
|
12
12
|
<meta property="og:description" content="{{ site.description }}">
|
|
13
13
|
<meta property="og:site_name" content="{{ site.title }}">
|
|
14
|
-
<meta property="og:image" content="/assets/img/header-preview.jpg" />
|
|
14
|
+
<meta property="og:image" content="{ '/' | relative_url }}assets/img/header-preview.jpg" />
|
|
15
15
|
<meta property="og:type" content="website">
|
|
16
16
|
<meta property="og:locale" content="fr_FR">
|
|
17
17
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
18
18
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
19
19
|
<meta name="apple-mobile-web-app-title" content="{{ site.shortname }}">
|
|
20
|
-
<link rel="apple-touch-icon" href="/assets/img/ps-logo-apple.png" />
|
|
21
|
-
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
22
|
-
<link rel="stylesheet" href="/assets/css/normalize.min.css">
|
|
23
|
-
<link rel="stylesheet" href="/assets/css/github-markdown.css">
|
|
24
|
-
<link rel="stylesheet" href="/assets/css/prism.css">
|
|
25
|
-
<link rel="stylesheet" href="/assets/css/fontawesome.css">
|
|
20
|
+
<link rel="apple-touch-icon" href="{{ '/' | relative_url }}assets/img/ps-logo-apple.png" />
|
|
21
|
+
<link rel="stylesheet" href="{{ '/' | relative_url }}assets/css/styles.css">
|
|
22
|
+
<link rel="stylesheet" href="{{ '/' | relative_url }}assets/css/normalize.min.css">
|
|
23
|
+
<link rel="stylesheet" href="{{ '/' | relative_url }}assets/css/github-markdown.css">
|
|
24
|
+
<link rel="stylesheet" href="{{ '/' | relative_url }}assets/css/prism.css">
|
|
25
|
+
<link rel="stylesheet" href="{{ '/' | relative_url }}assets/css/fontawesome.css">
|
|
26
26
|
<script src="/assets/js/jquery-3.3.1.min.js"></script>
|
|
27
27
|
</head>
|
data/_includes/header.html
CHANGED
|
@@ -17,17 +17,17 @@
|
|
|
17
17
|
<ul>
|
|
18
18
|
{% for subchildlink in linkparts[1] %}
|
|
19
19
|
{% for sublinkparts in subchildlink %}
|
|
20
|
-
<li><a href='{{ sublinkparts[1] }}'>{{ sublinkparts[0] }}</a></li>
|
|
20
|
+
<li><a href='{{ sublinkparts[1] | relative_url }}'>{{ sublinkparts[0] }}</a></li>
|
|
21
21
|
{% endfor %}{% endfor %}
|
|
22
22
|
</ul>
|
|
23
23
|
</li>
|
|
24
24
|
{% else %}
|
|
25
|
-
<li><a href='{{ linkparts[1] }}'>{{ linkparts[0] }}</a></li>
|
|
25
|
+
<li><a href='{{ linkparts[1] | relative_url }}'>{{ linkparts[0] }}</a></li>
|
|
26
26
|
{% endif %}{% endfor %}{% endfor %}
|
|
27
27
|
</ul>
|
|
28
28
|
</li>
|
|
29
29
|
{% else %}
|
|
30
|
-
<li><a href='{{ link[1] }}'>{{ link[0] }}</a></li>
|
|
30
|
+
<li><a href='{{ link[1] | relative_url }}'>{{ link[0] }}</a></li>
|
|
31
31
|
{% endif %}{% endfor %}
|
|
32
32
|
</ul>
|
|
33
33
|
</nav>
|
data/_includes/post-head.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<!-- Open Graph -->
|
|
9
9
|
<meta property="og:title" content="{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}">
|
|
10
10
|
<meta property="og:type" content="website">
|
|
11
|
-
<meta property="og:url" content="{{
|
|
11
|
+
<meta property="og:url" content="{{ '/' | absolute_url }}">
|
|
12
12
|
<meta property="og:description" content="{{ site.description }}">
|
|
13
13
|
<meta property="og:site_name" content="{{ site.title }}">
|
|
14
14
|
<meta property="og:image" content="{% if page.preview-cover %}{{page.preview-cover}}{% elsif page.post-cover %}{{page.post-cover}}{% endif %}" />
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
20
20
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
21
21
|
<meta name="apple-mobile-web-app-title" content="{{ site.shortname }}">
|
|
22
|
-
<link rel="apple-touch-icon" href="/assets/img/ps-logo-apple.png" />
|
|
23
|
-
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
24
|
-
<link rel="stylesheet" href="/assets/css/normalize.min.css">
|
|
22
|
+
<link rel="apple-touch-icon" href="{{ '/' | relative_url }}assets/img/ps-logo-apple.png" />
|
|
23
|
+
<link rel="stylesheet" href="{{ '/' | relative_url }}assets/css/styles.css">
|
|
24
|
+
<link rel="stylesheet" href="{{ '/' | relative_url }}assets/css/normalize.min.css">
|
|
25
25
|
<link rel="stylesheet" href="https://at.alicdn.com/t/font_roc50gemkxpw4s4i.css">
|
|
26
|
-
<link rel="stylesheet" href="/assets/css/github-markdown.css">
|
|
27
|
-
<link rel="stylesheet" href="/assets/css/prism.css">
|
|
28
|
-
<link rel="stylesheet" href="/assets/css/fontawesome.css">
|
|
29
|
-
<script src="/assets/js/jquery-3.3.1.min.js"></script>
|
|
26
|
+
<link rel="stylesheet" href="{{ '/' | relative_url }}assets/css/github-markdown.css">
|
|
27
|
+
<link rel="stylesheet" href="{{ '/' | relative_url }}assets/css/prism.css">
|
|
28
|
+
<link rel="stylesheet" href="{{ '/' | relative_url }}assets/css/fontawesome.css">
|
|
29
|
+
<script src="{{ '/' | relative_url }}assets/js/jquery-3.3.1.min.js"></script>
|
|
30
30
|
{% include anchor.html %}
|
|
31
31
|
</head>
|