bridgetown_theme_single_page_opt_in 0.1.1 → 0.1.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcc539e791e184c5b3d52fca4a8eceb70e79228ee031e4db08aed5da3f9d0443
|
4
|
+
data.tar.gz: d6432d59f4203bde713afaad2fffe757d3a9a08b6da3c37d4dfa2d0206eb8896
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 579985aeeaa3c19d89db6f13a9fb478b9c349732a6675ceba68ebcb5c151c7c77cb33e682deafe2a4ef44013588d804f9bad0f7a9916f02ea6e4fbded39cb181
|
7
|
+
data.tar.gz: cb8564e03438cbe0c70927984f10b89a77922ec558a0308026796cef175a0d4fe5f33945df8e5c35a672b097f908bf109522ae3d7274cf5d44f2317dc702b57b
|
data/bridgetown.automation.rb
CHANGED
@@ -1,9 +1,12 @@
|
|
1
|
-
|
1
|
+
add_gem("bridgetown_theme_single_page_opt_in")
|
2
2
|
|
3
|
-
|
3
|
+
gsub_file("config/initializers.rb", /^((?!#.)end)/, " init :bridgetown_theme_single_page_opt_in\nend")
|
4
|
+
|
5
|
+
prepend_to_file "frontend/styles/index.css" do
|
4
6
|
"@import \"bridgetown_theme_single_page_opt_in/frontend/styles/index.css\";"
|
7
|
+
# "@import url("./lander.css");"
|
5
8
|
end
|
6
9
|
|
7
|
-
copy_file("spoi_data/data/1_top_banner.yml", "src/_data/1_top_banner.yml")
|
10
|
+
# copy_file("spoi_data/data/1_top_banner.yml", "src/_data/1_top_banner.yml")
|
8
11
|
|
9
12
|
# Read the Automations documentation: https://www.bridgetownrb.com/docs/automations
|
@@ -22,6 +22,6 @@ Bridgetown.initializer :bridgetown_theme_single_page_opt_in do |config|
|
|
22
22
|
components: File.expand_path("../components", __dir__),
|
23
23
|
layouts: File.expand_path("../layouts", __dir__),
|
24
24
|
content: File.expand_path("../content", __dir__),
|
25
|
-
|
25
|
+
data: File.expand_path("../data", __dir__)
|
26
26
|
)
|
27
27
|
end
|