PHP Classes

File: template/default/skin/template.php

Recommend this page to a friend!
  Classes of Dave Smith   Amp Frame   template/default/skin/template.php   Download  
File: template/default/skin/template.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Amp Frame
MVC framework for developing Web applications
Author: By
Last change:
Date: 5 years ago
Size: 1,196 bytes
 

Contents

Class file image Download
<?php
/*
AMP Frame ver 1.0.0
Default Template
template/default/skin/template.php
Template - Default
*/
if( !defined('AFALLOW') ){
    die(
'direct access not allowed');
}
?>
<!DOCTYPE html>
<html lang="en">
    <head>
        <base href="/<?php echo AFFOLDER;?>">
        <title><?php $this->echoProperty( 'afmPage', 'title' );?></title>
<?php
$this
->echoMeta();
?>
<?php
$this
->echoLink();
?>
<link rel="icon" href="/<?php echo AFFOLDER;?>favicon.ico">
        <link rel="stylesheet" type="text/css" href="template/default/css/style.css?1.0.0">
    </head>
    <body>
        <div class="container-fluid">
            <?php $this->echoNavBar( 'siteMenu', $this->page );?>
<div class="row">&nbsp</div>
<?php
include( $this->runMethod( 'afmPage', 'returnContent', $this->page ) );
?>
<div class="row">
                <div class="col text-right small font-italic">Copyright &copy <?php echo date('Y');?> <?php echo AFSITETITLE;?> (<?php echo AFBRANDING;?>)</div>
            </div><!-- row -->
            <div class="row">&nbsp</div>
        </div><!-- container-fluid -->
<?php
$this
->echoScript();
?>
</body>
</html>