jekyll-theme-consulting 0.9.1 → 0.9.6

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
  SHA256:
3
- metadata.gz: b35f2481952a9ebe8dafa4b1cd177e286164cd92ac747a381733d218a3982ad5
4
- data.tar.gz: 4651f3798b25346443982a304f7a184a24845b64eca63b1ada5709c3f65dd908
3
+ metadata.gz: de22123c10abd0205d8d98d71de73c15ed425b3d74d7cf96e3eca0b271ebfe8e
4
+ data.tar.gz: d16923104d6a2fc93028ccb96071897e41534b3723e86046ecbed2db37c4e20d
5
5
  SHA512:
6
- metadata.gz: eafecc362c9ed8381a598c422503d71b9afc6e792210c7d23e195361195ee248d700925a69e2ae687ca5bd21ef0615af6f3244124d46fa1ecabf9b7c623358d6
7
- data.tar.gz: ff1efcfb824a73ae3e024ecc7f941a42e478c34cc737fed5ca2cd151722fb7115e4aea7d2f193a495170d3e64a29be2a28a51d798d61f6f9f013f4376de0a332
6
+ metadata.gz: 49dbba420c4350bdd76d4856634f3f311ec74ec2d39bf08bc138c7f51e3588fe8f3a292da33cb6a059f6265c9568d793305818e27f233f557513f4aaa11558b8
7
+ data.tar.gz: 05566a7c46ec219cc9df849fa4bac5a861a023c42ab6b83a2e8e3f9615b80bb1c7b38372dec72d39ce286a7c84d867c5706e1123d81f8207d89ec96f17e8b3c1
@@ -18,8 +18,8 @@
18
18
  </div>
19
19
  <div class="col-6 col-12-medium col-12-small col-12-xsmall">
20
20
  <ul class="contact">
21
- <li class="icon solid fa-envelope"><a href="#">{{ site.email }}</a></li>
22
- <li class="icon solid fa-phone">{{ site.phone }}</li>
21
+ <li class="icon solid fa-envelope"><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
22
+ <li class="icon solid fa-phone"><a href="tel:{{ site.phone }}">{{ site.phone }}</a></li>
23
23
  <li class="icon solid fa-home">{{ site.street_address }}<br />
24
24
  {{ site.zip_code }}, {{ site.city }}</li>
25
25
  </ul>
@@ -0,0 +1,28 @@
1
+ <article class="{{ include.class }}">
2
+ {%- if include.target_url -%}
3
+ <a href='{{ include.target_url | absolute_url }}'>
4
+ {%- endif -%}
5
+ <div class="fact-intro on">
6
+ <p>{{ include.default.intro | default: &nbsp; }}</p>
7
+ </div>
8
+ <div class="fact on">
9
+ <h3>{{ include.default.fact | default: &nbsp; }}</h3>
10
+ </div>
11
+ <div class="fact-outro on">
12
+ <p>{{ include.default.outro | default: &nbsp; }}</p>
13
+ </div>
14
+ <span class="icon {{ include.default.icon | default: 'fa-play' }} on"></span>
15
+ <div class="fact-intro off">
16
+ <p>{{ include.hover.intro | default: &nbsp; }}</p>
17
+ </div>
18
+ <div class="fact off">
19
+ <h3>{{ include.hover.fact | default: &nbsp; }}</h3>
20
+ </div>
21
+ <div class="fact-outro off">
22
+ <p>{{ include.hover.outro | default: &nbsp; }}</p>
23
+ </div>
24
+ <span class="icon {{ include.hover.icon | default: 'fa-exclamation' }} off"></span>
25
+ {%- if include.target_url -%}
26
+ </a>
27
+ {%- endif -%}
28
+ </article>
@@ -0,0 +1,9 @@
1
+ <a href='{{ include.target_url | absolute_url }}' class="icon {{ include.class }}">
2
+ <article style="width: 100%;">
3
+ <span class="icon {{ include.icon }}"></span>
4
+ <div class="content">
5
+ <h3>{{ include.title }}</h3>
6
+ <p>{{ include.content }}</p>
7
+ </div>
8
+ </article>
9
+ </a>
@@ -1,17 +1,18 @@
1
- <div id="{{ include.id }}" class="vertical-tabset">
2
- {%- for tab in include.tabs -%}
3
- {%- capture tab-id -%}{{ tab.id | default: tab.title | slugify }}{{ forloop.index }}{%- endcapture -%}
4
- <div id="tab-{{ tab-id }}" class="vertical-tab">
5
- {%- if forloop.first == true -%}
1
+ {%- assign show-title = include.show-title | default: true -%}
2
+ <div {% if include.id %}id="{{ include.id }}"{% endif %} class="vertical-tabset">
3
+ {%- for tab in include.tabs -%}
4
+ {%- capture tab-id -%}tab{{ forloop.index }}-{{ tab.id | default: tab.title | slugify }}{%- endcapture -%}
5
+ <div id="{{ tab-id }}" class="vertical-tab">
6
+ {%- if forloop.first == true -%}
6
7
  <input type="radio" name="{{ include.id }}" id="option-{{ tab-id }}" checked>
7
8
  {%- else -%}
8
9
  <input type="radio" name="{{ include.id }}" id="option-{{ tab-id }}">
9
10
  {%- endif -%}
10
11
  <label for="option-{{ tab-id }}" style="width: {{ include.header-width | default: 30 }}%;">{{ tab.title }}</label>
11
12
  <section class="tab-panel" style="left: {{ include.header-width | default: 30 }}%;">
12
- <h2>{{ tab.title }}</h2>
13
+ {% if show-title == true %}<h2>{{ tab.title }}</h2>{% endif %}
13
14
  <p>{{ tab.content }}</p>
14
15
  </section>
15
16
  </div>
16
- {%- endfor -%}
17
+ {%- endfor -%}
17
18
  </div>
@@ -4,7 +4,7 @@
4
4
 
5
5
  /// Breakpoints.
6
6
  /// @var {list}
7
- $breakpoints: () !global;
7
+ $breakpoints: null;
8
8
 
9
9
  // Mixins.
10
10
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-consulting
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moodule
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-26 00:00:00.000000000 Z
11
+ date: 2020-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,6 +80,8 @@ files:
80
80
  - _includes/contact_form.html
81
81
  - _includes/contact_script.html
82
82
  - _includes/date.html
83
+ - _includes/fact.html
84
+ - _includes/feature.html
83
85
  - _includes/footer.html
84
86
  - _includes/head.html
85
87
  - _includes/header.html