bridgetown_theme_single_page_opt_in 0.1.36 → 0.1.37
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/components/bridgetown_theme_single_page_opt_in/testimonial.liquid +10 -0
- data/components/bridgetown_theme_single_page_opt_in/testimonial_row.liquid +13 -0
- data/components/bridgetown_theme_single_page_opt_in/youtube_player.liquid +10 -0
- data/lib/bridgetown_theme_single_page_opt_in/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f42e451a03f398732a8b93e29fe132361b175d5dd2520cef0f1beb7096eac99c
|
4
|
+
data.tar.gz: 026c410d2a68a43c5e4ab8e17e5c9fe9ec97562c44c26ae637d5b670e4453f1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf98fb21935fb80482b8f461fa67a88b3fdad0cf700978bd4e28267fc4b2c8eb55bdc00db02d449fa950b7b2e40d594d88802f24f38c7feb3ef638e8e78e97dd
|
7
|
+
data.tar.gz: 3df487e0ef5a447d15f70a9e0c087fc0c558608d27a376b8841a5400875fcf88acd268042fe280aa6b2d6623e3855661db7fcca9d5e491f4709564e8f6f57ccb
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<div class="de elHeadlineWrapper ui-droppable de-editable" style="margin-top: 0px; outline: none; cursor: pointer; display: block; font-family: Lato, Helvetica, sans-serif !important;" aria-disabled="false" data-google-font="Lato">
|
2
|
+
{% if testimonial.video %}
|
3
|
+
{% render "youtube_player" video: testimonial.video %}
|
4
|
+
{% else %}
|
5
|
+
<div class="ne elHeadline hsSize2 lh3 elMargin0 elBGStyle0 mfs_16" style="text-align: left; font-size: 18px; color: rgb(0, 0, 0);" >{{ testimonial.text }}
|
6
|
+
<div><br></div>
|
7
|
+
<div>- {{ testimonial.name }}</div>
|
8
|
+
</div>
|
9
|
+
{% endif %}
|
10
|
+
</div>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<div class="row bgCover noBorder borderSolid border3px radius10 P0-top P0-bottom P0H noTopMargin" style="margin-bottom: 0px; outline: none; background-color: rgb(255, 255, 255); padding: 35px 25px 25px; width: 100%; max-width: 100%; margin-left: auto; margin-right: auto;" col-array="6,6">
|
2
|
+
<div class="innerContent ui-resizable col-md-6" style="outline: none;">
|
3
|
+
<div class="col-inner bgCover noBorder borderSolid border3px radius0 P0-top P0-bottom P0H noTopMargin" style="padding-left: 0px; padding-right: 0px;">
|
4
|
+
{% render "testimonial", testimonial: row.left %}
|
5
|
+
</div>
|
6
|
+
</div>
|
7
|
+
|
8
|
+
<div class="innerContent col_right ui-resizable col-md-6" style="outline: none;">
|
9
|
+
<div class="col-inner bgCover noBorder borderSolid border3px radius0 P0-top P0-bottom P0H noTopMargin" style="padding-left: 0px; padding-right: 0px;">
|
10
|
+
{% render "testimonial", testimonial: row.right %}
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</div>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bridgetown_theme_single_page_opt_in
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.37
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- graial
|
@@ -99,6 +99,9 @@ files:
|
|
99
99
|
- components/bridgetown_theme_single_page_opt_in/footer.liquid
|
100
100
|
- components/bridgetown_theme_single_page_opt_in/head.liquid
|
101
101
|
- components/bridgetown_theme_single_page_opt_in/styles.liquid
|
102
|
+
- components/bridgetown_theme_single_page_opt_in/testimonial.liquid
|
103
|
+
- components/bridgetown_theme_single_page_opt_in/testimonial_row.liquid
|
104
|
+
- components/bridgetown_theme_single_page_opt_in/youtube_player.liquid
|
102
105
|
- content/bridgetown_theme_single_page_opt_in/1_top_banner.yml
|
103
106
|
- content/bridgetown_theme_single_page_opt_in/site_metadata.yml
|
104
107
|
- layouts/bridgetown_theme_single_page_opt_in/landing.liquid
|