PHP Classes

File: web-app/layout/default.phtml

Recommend this page to a friend!
  Classes of davifelipe   smart MVC   web-app/layout/default.phtml   Download  
File: web-app/layout/default.phtml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: smart MVC
MVC framework using Smarty to render views
Author: By
Last change:
Date: 12 years ago
Size: 1,115 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="pt-BR"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title><?php echo ($_pageTitle != '' ? $_pageTitle : SMVC_Start::getPageTitle());?></title> <meta name="title" content="<?php echo SMVC_Start::getPageTitle();?> " /> <meta name="description" content="<?php echo ($_pageDescription != '' ? $_pageDescription : SMVC_Start::getPageTitle());?>" /> <meta name="keywords" content="<?php echo ($_pageKeyWords != '' ? $_pageKeyWords : SMVC_Start::getPageKeyWords());?>" /> </head> <body> <h3>Módulo - phtml</h3> <div id="menu"> <ul> <li> <a href="?r=smarty/index">smarty/index</a> </li> <li> <a href="?r=index">index</a> </li> <li> <a href="?r=index/viewphtml">index/viewphtml</a> </li> </ul> </div> <?php include_once $_contentFile; ?> </body> </html>