asq 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/_layouts/default.html +2 -2
- data/_layouts/home.html +2 -2
- data/_layouts/post.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: c691f331fc4f82c001b460597c78b02006bd25e1fbb573567e9178a1f423295d
|
|
4
|
+
data.tar.gz: 3cabedeec87f4df228d45a0e6878d3bf23b3bf14aafda68a2fc5c5870d870ea3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43ebc42bb6ef182b4be494046c626e02ae5cb2a986292d6ee9150775a7f72fc043f463e8a4569b0ab45eefa4f22aeb6d466363a0d2bd98d5e3a6f8c2cba31a6d
|
|
7
|
+
data.tar.gz: dd7fb44f4c24d9a2e6c82b909ef2af9c9607501068e79adaff06f936e50e00c5c2545e3aad30c0734677a0429d17baa9de0ef9cbca970905b760165b07c0b604
|
data/_layouts/default.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
<title>{{ page.title }}</title>
|
|
7
7
|
|
|
8
|
-
<link rel='stylesheet' href='/assets/css/style.css'>
|
|
8
|
+
<link rel='stylesheet' href='{{ site.baseurl }}/assets/css/style.css'>
|
|
9
9
|
|
|
10
10
|
<!-- Google Fonts -->
|
|
11
11
|
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap" rel="stylesheet">
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
<body>
|
|
19
19
|
<div id='left-bar'>
|
|
20
|
-
<a href='/'><img id='logo' src='/assets/images/
|
|
20
|
+
{% if site.logo_image %}<a href='{{ site.baseurl }}/'><img id='logo' src='{{ site.baseurl }}/assets/images/{{ site.logo_image }}' /></a>{% endif %}
|
|
21
21
|
<!--ul>
|
|
22
22
|
{% for page in site.pages %}
|
|
23
23
|
<li><a href='{{ page.url }}'> =>{{ page.title }}</a></li>
|
data/_layouts/home.html
CHANGED
|
@@ -6,11 +6,11 @@ layout: default
|
|
|
6
6
|
{% for post in site.posts %}
|
|
7
7
|
<li>
|
|
8
8
|
<span class='date {% if post.category %}{{ post.category }}{% endif %}'>{{ post.date | date: '%d/%m/%Y' }}</span>
|
|
9
|
-
<a href='{{ post.url }}'>
|
|
9
|
+
<a href='{{ site.baseurl }}{{ post.url }}'>
|
|
10
10
|
<div>
|
|
11
11
|
<h2>{{ post.title }}</h2>
|
|
12
12
|
{% if post.subtitle %}<h3>{{ post.subtitle }}</h3>{% endif %}
|
|
13
|
-
{% if post.header_image %}<img class='header-image' src='/assets/images/{{ post.header_image }}' />{% endif %}
|
|
13
|
+
{% if post.header_image %}<img class='header-image' src='{{ site.baseurl }}/assets/images/{{ post.header_image }}' />{% endif %}
|
|
14
14
|
</div>
|
|
15
15
|
</a>
|
|
16
16
|
</li>
|
data/_layouts/post.html
CHANGED
|
@@ -6,7 +6,7 @@ layout: default
|
|
|
6
6
|
<h2 class='title'>{{ page.title }}</h2>
|
|
7
7
|
{% if page.subtitle %}<h3>{{ page.subtitle }}</h3>{% endif %}
|
|
8
8
|
|
|
9
|
-
{% if page.header_image %}<img class='header-image' src='/assets/images/{{ page.header_image }}' />{% endif %}
|
|
9
|
+
{% if page.header_image %}<img class='header-image' src='{{ site.baseurl }}/assets/images/{{ page.header_image }}' />{% endif %}
|
|
10
10
|
|
|
11
11
|
<p>
|
|
12
12
|
{{ content }}
|