seriously_simple_static_starter 0.5.1 → 0.6.1
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/cards.html +1 -1
- data/_includes/core/blocks.html +21 -0
- data/_includes/core/button.html +6 -0
- data/_includes/core/buttons.html +5 -0
- data/_includes/core/call-to-action-banner.html +8 -0
- data/_includes/core/container_row.html +7 -0
- data/_includes/core/feature_block.html +38 -0
- data/_includes/core/full_width_row.html +5 -0
- data/_includes/core/members_section.html +27 -0
- data/_includes/core/slider.html +28 -0
- data/_includes/core/slider_row.html +3 -0
- data/_includes/core/text.html +3 -0
- data/_includes/core/title.html +3 -0
- data/_includes/core/youtube_video_embed.html +11 -0
- data/_includes/flow.html +15 -17
- data/_includes/flow_inner.html +23 -0
- data/_includes/header.html +22 -20
- data/_layouts/page.html +9 -9
- data/_sass/_header.scss +8 -4
- data/_sass/_navbar.scss +3 -3
- data/_sass/_theme.scss +12 -11
- data/_sass/_variables.scss +1 -1
- data/assets/images/drawing1.svg +1119 -0
- data/assets/images/lkft_workflow.svg +1820 -0
- metadata +18 -4
- data/_includes/feature-block.html +0 -24
- data/_layouts/flow.html +0 -7
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: seriously_simple_static_starter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Kirkby
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-07-
|
|
11
|
+
date: 2019-07-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -119,8 +119,21 @@ files:
|
|
|
119
119
|
- README.md
|
|
120
120
|
- _includes/blog_archive.html
|
|
121
121
|
- _includes/cards.html
|
|
122
|
-
- _includes/
|
|
122
|
+
- _includes/core/blocks.html
|
|
123
|
+
- _includes/core/button.html
|
|
124
|
+
- _includes/core/buttons.html
|
|
125
|
+
- _includes/core/call-to-action-banner.html
|
|
126
|
+
- _includes/core/container_row.html
|
|
127
|
+
- _includes/core/feature_block.html
|
|
128
|
+
- _includes/core/full_width_row.html
|
|
129
|
+
- _includes/core/members_section.html
|
|
130
|
+
- _includes/core/slider.html
|
|
131
|
+
- _includes/core/slider_row.html
|
|
132
|
+
- _includes/core/text.html
|
|
133
|
+
- _includes/core/title.html
|
|
134
|
+
- _includes/core/youtube_video_embed.html
|
|
123
135
|
- _includes/flow.html
|
|
136
|
+
- _includes/flow_inner.html
|
|
124
137
|
- _includes/footer.html
|
|
125
138
|
- _includes/ga-lite.html
|
|
126
139
|
- _includes/head.html
|
|
@@ -130,7 +143,6 @@ files:
|
|
|
130
143
|
- _includes/slider.html
|
|
131
144
|
- _layouts/base.html
|
|
132
145
|
- _layouts/default.html
|
|
133
|
-
- _layouts/flow.html
|
|
134
146
|
- _layouts/page.html
|
|
135
147
|
- _layouts/post.html
|
|
136
148
|
- _sass/_animation.scss
|
|
@@ -245,6 +257,8 @@ files:
|
|
|
245
257
|
- assets/fonts/lato/regular/regular.woff
|
|
246
258
|
- assets/fonts/lato/regular/regular.woff2
|
|
247
259
|
- assets/images/abstract-lines.jpg
|
|
260
|
+
- assets/images/drawing1.svg
|
|
261
|
+
- assets/images/lkft_workflow.svg
|
|
248
262
|
- assets/images/marketing.jpg
|
|
249
263
|
- assets/images/placeholder.jpg
|
|
250
264
|
- assets/images/ssss-resized.png
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<div class="row feature__block p-t-50 p-b-50">
|
|
2
|
-
<div class="container">
|
|
3
|
-
<div class="row">
|
|
4
|
-
<div class="col-md-7 block__image order-md-{% if include.object.format == "right" %}2{% else %}1{% endif %}">
|
|
5
|
-
{% assign block_image = include.object.image.path | replace: '/assets/images/','' %}
|
|
6
|
-
{% picture feature_block_image {{block_image}} alt=include.object.image.alt %}
|
|
7
|
-
</div>
|
|
8
|
-
<div class="col-md-5 block__text order-md-{% if include.object.format == "right" %}1{% else %}2{% endif %}">
|
|
9
|
-
<h2>{{include.object.title}}</h2>
|
|
10
|
-
{% if include.object.highlight-text %}
|
|
11
|
-
<div class="font-weight-bold">
|
|
12
|
-
{{include.object.highlight-text | markdownify }}
|
|
13
|
-
</div>
|
|
14
|
-
{% endif %}
|
|
15
|
-
{{include.object.text | markdownify}}
|
|
16
|
-
{% if include.object.buttons %}
|
|
17
|
-
{% for btn in include.object.buttons %}
|
|
18
|
-
<a class="btn btn-lg {% if btn.class %}{{btn.class}}{% endif %}" href="{{btn.url}}">{{btn.title}}</a>
|
|
19
|
-
{% endfor %}
|
|
20
|
-
{% endif %}
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|