40 lines
1.4 KiB
PHP
Raw Normal View History

2018-05-18 02:01:16 -06:00
<?php include __DIR__ . "/inc/header.inc.php"; ?>
<link rel="stylesheet" href="<?php get_theme_url(); ?>/assets/css/home.css" />
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<?php
$icon = get_complex_component("header-icon", null, ['icon']);
?>
<div class="logo sw-complex" data-json="<?php get_escaped_json($icon); ?>" data-component="header-icon">
<span class="icon <?php echo $icon['icon']; ?>"></span>
</div>
<div class="content">
<div class="inner">
<h1 class="sw-text" data-component="banner-title"><?php get_component("banner-title"); ?></h1>
<p class="sw-text" data-component="lead"><?php get_component("lead"); ?></p>
</div>
</div>
<nav>
<ul>
<?php get_navigation(); ?>
</ul>
</nav>
</header>
<!-- Main -->
<div id="main">
</div>
2018-05-18 02:11:10 -06:00
2018-05-18 02:01:16 -06:00
<?php include __DIR__ . "/inc/bg-edit.inc.php"; ?>
<!-- Footer -->
<footer id="footer">
2018-05-18 02:11:10 -06:00
<p class="copyright"><?php output_conditional("&copy; " . date('Y') . " [[VAR]] |", get_setting("businessname")); ?> Design: <a href="https://html5up.net">HTML5 UP</a> and <a href="https://netsyms.com">Netsyms</a>.</p>
2018-05-18 02:01:16 -06:00
</footer>
</div>
<?php include __DIR__ . "/inc/footer.inc.php"; ?>