jekyll-theme-consulting 0.9.2 → 0.9.7
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/_includes/contact.html +2 -2
- data/_includes/fact.html +28 -0
- data/_includes/feature.html +9 -0
- data/_includes/tabs.html +6 -6
- data/_sass/libs/_breakpoints.scss +1 -1
- data/_sass/main/components/_horizontal-tabs.scss +1 -1
- data/_sass/main/components/_vertical-tabs.scss +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f616d7ba3326e0bc9931e4b6cc3eb571f35780aae5d813aef0d41e2208aa6def
|
|
4
|
+
data.tar.gz: 87ef0cc53528ac8392e8b88ac19f2256b33f478603baf7422770fb5cfd788f54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20fc851e5f2eac14c79d9941e20c6f9943864c74cd75677bda40dfa897f0b8e4337f8398ddcaac759b7df08920cf321a1fe64a103020efbfbba2d896aacbf55f
|
|
7
|
+
data.tar.gz: 10ed173db443e472828f5df8957a94de0a8051e49223662b87af11da83329056153a76e8c0b805983e6dc3c7776b7532f7b7f4525c461d71b3b1e8066420a035
|
data/_includes/contact.html
CHANGED
|
@@ -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="
|
|
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>
|
data/_includes/fact.html
ADDED
|
@@ -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: }}</p>
|
|
7
|
+
</div>
|
|
8
|
+
<div class="fact on">
|
|
9
|
+
<h3>{{ include.default.fact | default: }}</h3>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="fact-outro on">
|
|
12
|
+
<p>{{ include.default.outro | default: }}</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: }}</p>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="fact off">
|
|
19
|
+
<h3>{{ include.hover.fact | default: }}</h3>
|
|
20
|
+
</div>
|
|
21
|
+
<div class="fact-outro off">
|
|
22
|
+
<p>{{ include.hover.outro | default: }}</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>
|
data/_includes/tabs.html
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{%- assign show-title = include.show-title | default: true -%}
|
|
2
|
-
<div id="{{ include.id }}" class="vertical-tabset">
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
<div id="
|
|
6
|
-
|
|
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 -%}
|
|
7
7
|
<input type="radio" name="{{ include.id }}" id="option-{{ tab-id }}" checked>
|
|
8
8
|
{%- else -%}
|
|
9
9
|
<input type="radio" name="{{ include.id }}" id="option-{{ tab-id }}">
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
<p>{{ tab.content }}</p>
|
|
15
15
|
</section>
|
|
16
16
|
</div>
|
|
17
|
-
|
|
17
|
+
{%- endfor -%}
|
|
18
18
|
</div>
|
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.
|
|
4
|
+
version: 0.9.7
|
|
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-
|
|
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
|