29 lines
935 B
PHP
29 lines
935 B
PHP
<?php
|
|
/**
|
|
* ============================================
|
|
* File: landing.php
|
|
* Path: /resources/views/pages/landing.php
|
|
* Purpose: Loads the Arsha one-pager layout content
|
|
* Version: 1.3.4
|
|
* Author: Wizdom Networks
|
|
* Usage: Rendered via LandingController::index()
|
|
* ============================================
|
|
*/
|
|
echo "<!-- SESSION: " . json_encode($_SESSION) . " -->";
|
|
?>
|
|
|
|
<?php View::renderPartial('hero'); ?>
|
|
<?php View::renderPartial('clients'); ?>
|
|
<?php View::renderPartial('about'); ?>
|
|
<?php View::renderPartial('why-us'); ?>
|
|
<?php View::renderPartial('ethos'); ?>
|
|
<?php View::renderPartial('services'); ?>
|
|
<?php // View::renderPartial('wizdom-way'); ?>
|
|
<?php View::renderPartial('call-to-action'); ?>
|
|
<?php View::renderPartial('team'); ?>
|
|
<?php View::renderPartial('testimonials'); ?>
|
|
<?php View::renderPartial('helpdeskplus-pricing'); ?>
|
|
<?php View::renderPartial('contact'); ?>
|
|
<?php View::renderPartial('faq'); ?>
|
|
|