seriously_simple_static_starter 0.5.1 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
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.5.1
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-03 00:00:00.000000000 Z
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/feature-block.html
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>
data/_layouts/flow.html DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- layout: base
3
- ---
4
- {% if page.header %}
5
- {% include header.html object=page.header %}
6
- {% endif %}
7
- {% include flow.html flow=page.sections %}