diff --git a/dist/app.css b/dist/app.css index 035cc60..68893fe 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12089,6 +12089,12 @@ section.side-by-side-text .right > * { color: #063C5A; } +section.multiblock-callout { + background-color: #063C5A; + padding: 4rem 0; + color: #fff; +} + .team-members .team-members-wrapper { display: flex; flex-wrap: wrap; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index 408fb72..e993af2 100644 --- a/dist/mix-manifest.json +++ b/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2", - "/app.css": "/app.css?id=e0d233c95a56f79d7107968052187d06" + "/app.css": "/app.css?id=928f06f1d37c930ef5c9dc787058e140" } diff --git a/src/scss/app.scss b/src/scss/app.scss index 832ad25..8452afd 100644 --- a/src/scss/app.scss +++ b/src/scss/app.scss @@ -8,6 +8,7 @@ @import "flex-intro-block"; @import "flex-side-by-side"; @import "flex-text-over-image-b"; +@import "flex-multiblock-callout"; @import "team-members"; @import "team-member"; diff --git a/src/scss/flex-multiblock-callout.scss b/src/scss/flex-multiblock-callout.scss new file mode 100644 index 0000000..dd81204 --- /dev/null +++ b/src/scss/flex-multiblock-callout.scss @@ -0,0 +1,5 @@ +section.multiblock-callout { + background-color: $c-navy; + padding: 4rem 0; + color: $c-white; +} diff --git a/vendor/open-function-computers-llc/rad-theme-engine/src/RadThemeEngine.php b/vendor/open-function-computers-llc/rad-theme-engine/src/RadThemeEngine.php index ade5156..996b294 100644 --- a/vendor/open-function-computers-llc/rad-theme-engine/src/RadThemeEngine.php +++ b/vendor/open-function-computers-llc/rad-theme-engine/src/RadThemeEngine.php @@ -92,6 +92,13 @@ class RadThemeEngine }; } + public static function assetContents() + { + return function ($template, $context, $args, $source) { + return site()->getAssetContents($args); + }; + } + private static function getFromBuffer($func) { ob_start(); diff --git a/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php b/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php index 89b74fe..ab5612f 100644 --- a/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php +++ b/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php @@ -601,6 +601,7 @@ class Site "flex" => \ofc\RadThemeEngine::processFlex(), "nl2br" => \ofc\RadThemeEngine::nl2br(), "assetURL" => \ofc\RadThemeEngine::assetURL(), + "assetContents" => \ofc\RadThemeEngine::assetContents(), ]; foreach ($helpers as $name => $callback) { $this->hb->addHelper($name, $callback);