jekyll-theme-consulting 0.9.0 → 0.9.5

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: 61b9e3aa8c0a6092c02e43609f8c6f6d383661ea4ed2c19a1f7945dc6bb51b12
4
- data.tar.gz: 0b30425585c2b197a84429391414e6b73900180c160cd75aa05bebc7bba4f458
3
+ metadata.gz: 729cae1d1f51424835a8d83695aa286df78850a82f49877a6af189bbacf3e0f3
4
+ data.tar.gz: c1bcd70ea8559f2b1396aa936f114c1199eb31841123a71b6e9c511f8d824b58
5
5
  SHA512:
6
- metadata.gz: 78d61e89157797a250e263e71b842dff6f7258760697f66337c3647b47ebce7c16c6bebe67a319140191157ee07c3b1e4cb7ccc66d232617a0b1cc3fc5a2ca54
7
- data.tar.gz: 5c728bc1b3e11688396765f67874c63d439a36229b4178327d8b185a5e3b9af941f06103e35264534afdbbe83b7a3f0cac8271bd1c58ac8f5754ad8f1fb78038
6
+ metadata.gz: f798f91a379bc2574f6ebc5658899f75efc8adb45792eaf11b05e32a938edd4425ad2d31e8b36f8f081d575c2f53a6abce40d9a8fd5cfcb1e5e56e6007e87692
7
+ data.tar.gz: 8f3aa7936bccc3a79509af6430dcf81a61dcf1a1a3bd144c74705ffa755697fe03b5474eb0948ece195c328f61f7a56b4d549c4477e435d852d8e05fa4a030fd
@@ -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 solid {{ 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 solid {{ include.hover.icon | default: 'fa-exclamation' }} off"></span>
25
+ {%- if include.target_url -%}
26
+ </a>
27
+ {%- endif -%}
28
+ </article>
@@ -0,0 +1,18 @@
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 -%}
7
+ <input type="radio" name="{{ include.id }}" id="option-{{ tab-id }}" checked>
8
+ {%- else -%}
9
+ <input type="radio" name="{{ include.id }}" id="option-{{ tab-id }}">
10
+ {%- endif -%}
11
+ <label for="option-{{ tab-id }}" style="width: {{ include.header-width | default: 30 }}%;">{{ tab.title }}</label>
12
+ <section class="tab-panel" style="left: {{ include.header-width | default: 30 }}%;">
13
+ {% if show-title == true %}<h2>{{ tab.title }}</h2>{% endif %}
14
+ <p>{{ tab.content }}</p>
15
+ </section>
16
+ </div>
17
+ {%- endfor -%}
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.0
4
+ version: 0.9.5
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-25 00:00:00.000000000 Z
11
+ date: 2020-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,6 +80,7 @@ files:
80
80
  - _includes/contact_form.html
81
81
  - _includes/contact_script.html
82
82
  - _includes/date.html
83
+ - _includes/fact.html
83
84
  - _includes/footer.html
84
85
  - _includes/head.html
85
86
  - _includes/header.html
@@ -91,6 +92,7 @@ files:
91
92
  - _includes/search.html
92
93
  - _includes/sidebar.html
93
94
  - _includes/social.html
95
+ - _includes/tabs.html
94
96
  - _includes/thread.html
95
97
  - _includes/toggle.html
96
98
  - _includes/waves/bottom.html