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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a034b63837d62fae891603fd6fab5122c18dfc1855261bf8509dd6b6cd31afa
4
- data.tar.gz: 8beb5e7b38dad92ea10c409457aa6240d5864bb7ef7ebfe058c3ce7f2dce0bf1
3
+ metadata.gz: c691f331fc4f82c001b460597c78b02006bd25e1fbb573567e9178a1f423295d
4
+ data.tar.gz: 3cabedeec87f4df228d45a0e6878d3bf23b3bf14aafda68a2fc5c5870d870ea3
5
5
  SHA512:
6
- metadata.gz: 7a4a40f5cca20674eac2f43568ca35964bdc35639717ced5bfbb03333478f8e88efb172c174f6f4b16581aea057e7e4405cf4b176abd76ddd95a7d8fc428c039
7
- data.tar.gz: 5d4ab870cfb3e71af36269b7b71bf032e9c1298300a503f68162fb76954145c8230e8d7d4901b9a9244bb6820b14aa1a9421ad88bc6b8f9f7edf06670b8bc79f
6
+ metadata.gz: 43ebc42bb6ef182b4be494046c626e02ae5cb2a986292d6ee9150775a7f72fc043f463e8a4569b0ab45eefa4f22aeb6d466363a0d2bd98d5e3a6f8c2cba31a6d
7
+ data.tar.gz: dd7fb44f4c24d9a2e6c82b909ef2af9c9607501068e79adaff06f936e50e00c5c2545e3aad30c0734677a0429d17baa9de0ef9cbca970905b760165b07c0b604
@@ -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/logo.png' /></a>
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>
@@ -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>
@@ -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 }}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - AugustoQueiroz