bulma-clean-theme 0.8 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 14ee1fda44e54cc5265122d4da55353414293bc5
4
- data.tar.gz: 23ee61374a0974dcc0ec7890e2db84eea75a0c2f
3
+ metadata.gz: 365edf96f993fdb04ab7a6a17438e902546e21b7
4
+ data.tar.gz: 88e83adb658f7cda5708136893e8b0f98f3fc004
5
5
  SHA512:
6
- metadata.gz: d67b2365ba3744b3d93d5a8815a960d3af44b94068b3b9f5aec618cc90247b07256f196f4219c4b4fb879c0a225d1dc30175c6b6f614cc828f1800f21e83f3ce
7
- data.tar.gz: 759a578997f249bcb43947cf8eeb1ba909998ab2353c49dd901925a95d388fa01f5ee291b5452d9e0d633dc8959faeb5abcff84086eaa5d6e07acead0b184177
6
+ metadata.gz: 5bad6e57b63ca40367551dba6f41a881db24871bb643dd61de2a9df24f26585adb40c9635356ba65576219b4bb9645ee4fcd2f147b9aeebd67514ec94edb6d6a
7
+ data.tar.gz: 3242a63eca3d967ab9902e3f74de37660044a26c4ff56dab6bdf1a2011f68fcb9c51032c11acd69f720939a6c50a9b1eddbedb978152eb3068226c9754aa41a8
@@ -25,7 +25,7 @@
25
25
  {% endif %}
26
26
 
27
27
  {% if callout.call_to_action_name %}
28
- <a href="{{ callout.call_to_action_link | prepend: site.baseurl }}" class="button is-primary">
28
+ <a href="{{ callout.call_to_action_link | absolute_url }}" class="button is-primary">
29
29
  {{ callout.call_to_action_name }}
30
30
  </a>
31
31
  {% endif %}
@@ -6,7 +6,7 @@
6
6
  {% for item in site.data[site.footer_menu] %}
7
7
  <div class="column has-text-centered">
8
8
  <div>
9
- <a href="{{ item.link | prepend: site.baseurl }}" class="link">{{ item.name }}</a>
9
+ <a href="{{ item.link | absolute_url }}" class="link">{{ item.name }}</a>
10
10
  </div>
11
11
  </div>
12
12
  {% endfor %}
@@ -4,7 +4,7 @@
4
4
  <title>{{ page.title }} - {{ site.title }}</title>
5
5
  <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/app.css">
6
6
  <link rel="shortcut icon" type="image/png"
7
- {% if site.favicon %} href="{{ site.favicon | prepend: site.baseurl }}" {% else %} href="{{ site.baseurl }}/favicon.png" {% endif %}
7
+ {% if site.favicon %} href="{{ site.favicon | absolute_url }}" {% else %} href="{{ site.baseurl }}/favicon.png" {% endif %}
8
8
  />
9
9
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css">
10
10
  {% unless site.hide_share_buttons %}
@@ -18,15 +18,15 @@
18
18
  {% for item in site.data.navigation %}
19
19
  {% if item.dropdown %}
20
20
  <div class="navbar-item has-dropdown is-hoverable">
21
- <a href="{{ item.link | prepend: site.baseurl }}" class="navbar-link {% if item.link == page.url %}is-active{% endif %}">{{ item.name }}</a>
21
+ <a href="{{ item.link | absolute_url }}" class="navbar-link {% if item.link == page.url %}is-active{% endif %}">{{ item.name }}</a>
22
22
  <div class="navbar-dropdown">
23
23
  {% for subitem in item.dropdown %}
24
- <a href="{{ subitem.link | prepend: site.baseurl }}" class="navbar-item {% if subitem.link == page.url %}is-active{% endif %}">{{ subitem.name }}</a>
24
+ <a href="{{ subitem.link | absolute_url }}" class="navbar-item {% if subitem.link == page.url %}is-active{% endif %}">{{ subitem.name }}</a>
25
25
  {% endfor %}
26
26
  </div>
27
27
  </div>
28
28
  {% else %}
29
- <a href="{{ item.link | prepend: site.baseurl }}" class="navbar-item {% if item.link == page.url %}is-active{% endif %}">{{ item.name }}</a>
29
+ <a href="{{ item.link | absolute_url }}" class="navbar-item {% if item.link == page.url %}is-active{% endif %}">{{ item.name }}</a>
30
30
  {% endif %}
31
31
  {% endfor %}
32
32
  {% endif %}
@@ -4,7 +4,7 @@
4
4
  <h1 class="title is-2">{{ page.title }}</h1>
5
5
  <p class="subtitle is-3">{{ page.subtitle }}</p>
6
6
  {% if page.hero_link %}
7
- <a href="{{ page.hero_link | prepend: site.baseurl }}" class="button is-info is-large">{{ page.hero_link_text }}</a>
7
+ <a href="{{ page.hero_link | absolute_url }}" class="button is-info is-large">{{ page.hero_link_text }}</a>
8
8
  {% endif %}
9
9
  </div>
10
10
  </div>
@@ -6,11 +6,11 @@
6
6
  <ul class="menu-list">
7
7
  {% for item in menu.items %}
8
8
  <li>
9
- <a href="{{ item.link | prepend: site.baseurl }}" class="{% if item.link == page.url %}is-active{% endif %}">{{ item.name }}</a>
9
+ <a href="{{ item.link | absolute_url }}" class="{% if item.link == page.url %}is-active{% endif %}">{{ item.name }}</a>
10
10
  {% if item.items %}
11
11
  <ul>
12
12
  {% for subitem in item.items %}
13
- <li><a href="{{ subitem.link | prepend: site.baseurl }}" class="{% if subitem.link == page.url %}is-active{% endif %}">{{ subitem.name }}</a></li>
13
+ <li><a href="{{ subitem.link | absolute_url }}" class="{% if subitem.link == page.url %}is-active{% endif %}">{{ subitem.name }}</a></li>
14
14
  {% endfor %}
15
15
  </ul>
16
16
  {% endif %}
@@ -8,7 +8,7 @@
8
8
  {% for item in showcase.items %}
9
9
  <section class="showcase">
10
10
  <figure class="image {% if item.image_ratio %} {{ item.image_ratio }} {% else %} is-16by9 {% endif %}">
11
- <img src="{{ item.image | prepend: site.baseurl }}" />
11
+ <img src="{{ item.image | absolute_url }}" />
12
12
  </figure>
13
13
  <div class="showcase-content">
14
14
  <div class="columns is-centered">
@@ -5,7 +5,7 @@
5
5
  <ul>
6
6
  {% for tab in tabs.items %}
7
7
  <li {% if tab.link == page.url %} class="is-active" {% endif %}>
8
- <a href="{{ tab.link | prepend: site.baseurl }}">
8
+ <a href="{{ tab.link | absolute_url }}">
9
9
  {% if tab.icon %}
10
10
  <span class="icon is-small"><i class="fas {{ tab.icon }}" aria-hidden="true"></i></span>
11
11
  {% endif %}
@@ -14,7 +14,7 @@ show_sidebar: false
14
14
  {% for product in sorted_products %}
15
15
  <div class="column is-4-desktop is-6-tablet">
16
16
 
17
- <a href="{{ product.url | prepend: site.baseurl }}">
17
+ <a href="{{ product.url | absolute_url }}">
18
18
 
19
19
  <div class="card">
20
20
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulma-clean-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.8'
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrisrhymes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-21 00:00:00.000000000 Z
11
+ date: 2020-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll