This commit is contained in:
2025-05-07 11:42:33 -07:00
parent 8989d48386
commit cfd241ee0b
6 changed files with 21 additions and 1 deletions

6
dist/app.css vendored
View File

@@ -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;

View File

@@ -1,4 +1,4 @@
{
"/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2",
"/app.css": "/app.css?id=e0d233c95a56f79d7107968052187d06"
"/app.css": "/app.css?id=928f06f1d37c930ef5c9dc787058e140"
}

View File

@@ -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";

View File

@@ -0,0 +1,5 @@
section.multiblock-callout {
background-color: $c-navy;
padding: 4rem 0;
color: $c-white;
}

View File

@@ -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();

View File

@@ -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);