15 lines
641 B
PHP
15 lines
641 B
PHP
<?php
|
|
// This file will build the HTML <head> section like a typical custom WordPress
|
|
// theme. It will also include the opening body tag, and all expected function
|
|
// calls are handled for you by the custom Handlerbar helpers that come with
|
|
// RAD. Check out the docs here:
|
|
// https://rad-theme-engine.ofco.cloud/docs/guides/helpers/
|
|
|
|
echo site()->render("header", [
|
|
"logo" => site()->getAssetURL("main-logo.jpg"),
|
|
"accountHref" => get_permalink(73),
|
|
"person-icon" => site()->getAssetContents("person-circle.svg"),
|
|
"phone-icon" => site()->getAssetContents("telephone.svg"),
|
|
"menu" => site()->renderMenu("main-nav"),
|
|
]);
|