bridgetown_theme_single_page_opt_in 0.1.14 → 0.1.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bridgetown.automation.rb +28 -2
- data/lib/bridgetown_theme_single_page_opt_in/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e58284e90fa081dbeb97e608a47c5a42c67ebeec2fdcd6575dfda90660b7c8b9
|
4
|
+
data.tar.gz: 26cfcae79e6592e9ed9b37fbc7fac770c2a91d53aeb266181196ce8f4fdadd34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 440745c7e1d84a373bf2ace42562485a901bd91ca827fa2d78d79109a6f7f5631dc65ee0db83ed36941e27b98b5dfdfb5d91d1d2bc921f4ef49d82206b3a1112
|
7
|
+
data.tar.gz: '078724783c2fdebac80d070890a2cece9c2315cdc65716e489c406349bd32eb891410602949a44295c7dc8b3cdacfac072187a635d644d4d14f53cfee1b50833'
|
data/bridgetown.automation.rb
CHANGED
@@ -5,8 +5,34 @@ gsub_file("config/initializers.rb", /^((?!#.)end)/, " init :bridgetown_theme_si
|
|
5
5
|
gsub_file("src/index.md", "layout: default", "layout: bridgetown_theme_single_page_opt_in/landing")
|
6
6
|
|
7
7
|
prepend_to_file "frontend/styles/index.css" do
|
8
|
-
|
9
|
-
|
8
|
+
"@import \"bridgetown_theme_single_page_opt_in/frontend/styles/index.css\";"
|
9
|
+
# "@import url("./lander.css");"
|
10
|
+
end
|
11
|
+
|
12
|
+
create_file "src/_data/1_top_banner.yml" do
|
13
|
+
<<~YAML
|
14
|
+
headline: <b>ATTN:</b> Call out to your dream customer!! Get set for <u>AWESOME</u> outcomes from taking action!!
|
15
|
+
YAML
|
16
|
+
end
|
17
|
+
|
18
|
+
create_file "src/_data/site_metadata.yml" do
|
19
|
+
<<~YAML
|
20
|
+
title: Your Site's name
|
21
|
+
tagline: Something spunky, confident, energetic
|
22
|
+
email: support@yourdomain.com
|
23
|
+
fb_page: https://www.facebook.com/groups/yourdomain/
|
24
|
+
description: >-
|
25
|
+
Your spunky catchline and theme about the beneficial outcome you want your customers to capitalize on
|
26
|
+
og-image: images/seasonally-stoked-logo.png
|
27
|
+
og-title: Your Site's name
|
28
|
+
og-description: >-
|
29
|
+
Your spunky catchline and theme about the beneficial outcome you want your customers to capitalize on
|
30
|
+
og-url: https://yourdomain.com
|
31
|
+
canonical: https://yourdomain.com
|
32
|
+
logo: https://yourdomain.com
|
33
|
+
address: a PO box on the moon, ideally
|
34
|
+
gtm-tag: G-TAGNUMBERS
|
35
|
+
YAML
|
10
36
|
end
|
11
37
|
|
12
38
|
# Read the Automations documentation: https://www.bridgetownrb.com/docs/automations
|