hacked-jekyll 2.0.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_layouts/404.html +3 -1
- data/_layouts/default.html +9 -9
- data/_layouts/home.html +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55d1fd537d32c92f49852229191e33ce237356176b9324dad15a47633eb2b166
|
4
|
+
data.tar.gz: 359460146e276417743ccf0d549016ec3f27fe0bed71b727308d3fd8c3b22ba1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35f4a06f70084c6b9e4a84f553fbc1ca745a90276bc78dde87a8e8c1eb86ad1e98547aecda2c5b32ddce6d49b9c32f3e7b99ef86ecee767350ffe647b7b55dac
|
7
|
+
data.tar.gz: 58e3fc21dc6e35eaad055b4a67bae09a0559f412e4729027b6919df0aad612180285e010e8b66669867e393343b9f2f547dbde574497f7ce9dae38d2ebcc2d27
|
data/_layouts/404.html
CHANGED
@@ -2,8 +2,10 @@
|
|
2
2
|
layout: default
|
3
3
|
---
|
4
4
|
|
5
|
+
{% assign return = site.url | append: site.baseurl | split: '//' | slice: 1 -%}
|
6
|
+
|
5
7
|
<div class="error">
|
6
8
|
<h1>404</h1>
|
7
9
|
<p>Page not found</p>
|
8
|
-
<p class="mt"><a href="{{ site.url }}">{{
|
10
|
+
<p class="mt"><a href="{{ site.url | append: site.baseurl }}">{{ return }}</a></p>
|
9
11
|
</div>
|
data/_layouts/default.html
CHANGED
@@ -8,15 +8,15 @@
|
|
8
8
|
<title>{{ site.title }}</title>
|
9
9
|
|
10
10
|
{% seo title=false %}
|
11
|
-
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
|
12
|
-
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png">
|
13
|
-
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
|
14
|
-
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png">
|
15
|
-
<link rel="manifest" href="assets/site.webmanifest">
|
16
|
-
<link rel="stylesheet" href="assets/css/normalize.css" />
|
17
|
-
<link rel="stylesheet" href="assets/css/open-color.css" />
|
18
|
-
<link rel="stylesheet" href="assets/css/styles.css" />
|
19
|
-
<script src="assets/js/typed.umd.js"></script>
|
11
|
+
<link rel="icon" type="image/x-icon" href="{{ 'assets/favicon.ico' | relative_url }}" />
|
12
|
+
<link rel="apple-touch-icon" sizes="180x180" href="{{ 'assets/apple-touch-icon.png' | relative_url }}">
|
13
|
+
<link rel="icon" type="image/png" sizes="32x32" href="{{ 'assets/favicon-32x32.png' | relative_url }}">
|
14
|
+
<link rel="icon" type="image/png" sizes="16x16" href="{{ 'assets/favicon-16x16.png' | relative_url }}">
|
15
|
+
<link rel="manifest" href="{{ 'assets/site.webmanifest' | relative_url }}">
|
16
|
+
<link rel="stylesheet" href="{{ 'assets/css/normalize.css' | relative_url }}" />
|
17
|
+
<link rel="stylesheet" href="{{ 'assets/css/open-color.css' | relative_url }}" />
|
18
|
+
<link rel="stylesheet" href="{{ 'assets/css/styles.css' | relative_url }}" />
|
19
|
+
<script src="{{ 'assets/js/typed.umd.js' | relative_url }}"></script>
|
20
20
|
</head>
|
21
21
|
|
22
22
|
<body>
|
data/_layouts/home.html
CHANGED
@@ -27,7 +27,7 @@ layout: default
|
|
27
27
|
{% if value.url -%}
|
28
28
|
<p class="ms">
|
29
29
|
{{ quote }}<span class="key">{{ value.key }}</span>{{ quote }}:
|
30
|
-
{{ quote }}<a class="value" href="{{ value.url }}" {{ target }}>{{ value.value }}</a>{{ quote }}
|
30
|
+
{{ quote }}<a class="value" href="{{ value.url | relative_url }}" {{ target }}>{{ value.value }}</a>{{ quote }}
|
31
31
|
{%- unless forloop.last -%}
|
32
32
|
{{ comma }}
|
33
33
|
{%- endunless %}
|
@@ -48,7 +48,7 @@ layout: default
|
|
48
48
|
{% for value in pair.value -%}
|
49
49
|
{% if value.url -%}
|
50
50
|
<p class="ms">
|
51
|
-
{{ quote }}<a class="value" href="{{ value.url }}" {{ target }}>{{ value.value }}</a>{{ quote }}
|
51
|
+
{{ quote }}<a class="value" href="{{ value.url | relative_url }}" {{ target }}>{{ value.value }}</a>{{ quote }}
|
52
52
|
{%- unless forloop.last -%}
|
53
53
|
{{ comma }}
|
54
54
|
{%- endunless %}
|
@@ -65,7 +65,7 @@ layout: default
|
|
65
65
|
]
|
66
66
|
{%- elsif pair.url -%}
|
67
67
|
{{ quote }}<span class="key">{{ pair.key }}</span>{{ quote }}:
|
68
|
-
{{ quote }}<a class="value" href="{{ pair.url }}" {{ target }}>{{ pair.value }}</a>{{ quote }}
|
68
|
+
{{ quote }}<a class="value" href="{{ pair.url | relative_url }}" {{ target }}>{{ pair.value }}</a>{{ quote }}
|
69
69
|
{%- else -%}
|
70
70
|
{{ quote }}<span class="key">{{ pair.key }}</span>{{ quote }}:
|
71
71
|
{{ quote }}<span class="value">{{ pair.value }}</span>{{ quote }}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hacked-jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- piazzai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '4.3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 4.3.
|
22
|
+
version: 4.3.3
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '4.3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 4.3.
|
32
|
+
version: 4.3.3
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: jekyll-seo-tag
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|