jekyll-theme-consulting 0.9.3 → 0.9.8

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: 6b6d6f02279970e8635f24390ef196ea610c1c457863b03f5676fe828e57a948
4
- data.tar.gz: 6ecfa7a6e2d3ec4c420845c6590a391fb0a3e4b27d6b20804228c5fc31de9550
3
+ metadata.gz: 6b39c6bcaa95c35246ce872c70f12f9d81cf6e3f17f95eedaf07d5f344ba2516
4
+ data.tar.gz: 126b31511bebc1b71876a224d52d4e4919f3a2fde8671741722d195afe7080be
5
5
  SHA512:
6
- metadata.gz: e2934b518630f8512b94a6cd8fa00b9294f6c7d595e3df8e5bb0406116657fe59cca852f584604fcc516d64e4799797bc688894c0585fbc6f66dda1868b3635f
7
- data.tar.gz: 0252cd01103a75131dea85edc95e6846ca513d26ef655db13efc5553e9a71817837437a7bdf0ea6c4ad241b15d28309a57ac386ced6f385a2564b629411f7953
6
+ metadata.gz: a5b0747b393c8df1e4a4612a615b45c356fbc7b914ea669abd45fb444845348e5b1603f96dc78f89fff7f405c998ce445a34f0d64adda708032e8cf5c8c3ea1f
7
+ data.tar.gz: 76ce6117d606ce6c3d2fe02f9c2ea729db51a3ac416a76d357ef4084fb6578772ee4e606455876936736d0f0354146c0aa6ec1ad17d63a33ae394ef7aa18dec1
@@ -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,9 +1,9 @@
1
1
  {%- assign show-title = include.show-title | default: true -%}
2
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 -%}
3
+ {%- for tab in include.tabs -%}
4
+ {%- capture tab-id -%}tab{{ forloop.index }}-{{ tab.id | default: tab.title | slugify }}{%- endcapture -%}
5
5
  <div id="{{ tab-id }}" class="vertical-tab">
6
- {%- if forloop.first == true -%}
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
- {%- endfor -%}
17
+ {%- endfor -%}
18
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
 
@@ -55,7 +55,7 @@
55
55
  }
56
56
 
57
57
  .horizontal-tabset .tab-panels .tab-panel {
58
- padding: 30px 0;
58
+ padding: 30px 0 !important;
59
59
  border-top: 2px solid _palette(accent);
60
60
  }
61
61
 
@@ -62,7 +62,7 @@
62
62
  position: absolute;
63
63
  top: 0;
64
64
  left: 40%;
65
- padding: 0 30px;
65
+ padding: 0 30px !important;
66
66
  margin: 0 0 0 -2px;
67
67
  border-left: 2px solid _palette(accent);
68
68
  height: 100%;
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.3
4
+ version: 0.9.8
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-27 00:00:00.000000000 Z
11
+ date: 2020-08-04 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