| source of /skin/harbor/inner.php<?phpuse Sprout\Helpers\ContentReplace;use Sprout\Helpers\Enc;use Sprout\Helpers\Jquery;use Sprout\Helpers\Navigation;use Sprout\Helpers\Notification;use Sprout\Helpers\Skin;  if (empty($browser_title)) $browser_title = Navigation::buildBrowserTitle($page_title);$main_content = ContentReplace::executeChain('main_content', $main_content);?><!DOCTYPE html><html lang="en" class="no-js"> <head>    <?php require_once '_meta-data.php'; ?>     <title><?php echo Enc::html($browser_title); ?></title>     <script type="text/javascript">var ROOT = 'SITE/';</script>    <?= Jquery::script('jquery', 'front'); ?>    <needs />     <link rel="preconnect" href="https://fonts.googleapis.com">    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>    <link href="https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap" rel="stylesheet">     <?= Skin::css('home', 'icons'); ?>     <?php require_once '_google_analytics.php'; ?></head> <body>    <div bp="container">         <header bp="text-center">            <img src="https://cdn.shopify.com/s/files/1/0401/9172/1631/files/Harbor_and_Sprout_Logo_in_color_with_text_300x300.png?v=1619754829" alt="<?php echo Enc::html($browser_title); ?>">        </header>         <main>            <h1><?php echo Enc::html($page_title); ?></h1>             <?= Notification::checkMessages(); ?>             <?= $main_content; ?>        </main>         <footer>            <p>© <?=  Enc::html(sprintf('%s - %s', date('Y'),  Kohana::config('sprout.site_title'))); ?> </p>        </footer>     </div></body></html> 
 |