PHP Classes

File: examples/templates/layout.tpl

Recommend this page to a friend!
  Classes of Michael Orji   Simplate   examples/templates/layout.tpl   Download  
File: examples/templates/layout.tpl
Role: Auxiliary data
Content type: text/plain
Description: template file
Class: Simplate
Template engine that replaces arrays of variables
Author: By
Last change:
Date: 9 years ago
Size: 910 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html> <head> <title>{title}</title> <link rel="stylesheet" type="text/css" href="styles.css" /> </head> <body> <div id="nav-menu"> <ul> <li><a href="user.php" title="example of a user profile page">User profile</a> | </li> <li><a href="user_loop.php" title="example of a user profile page with loop">User profile With Loop</a> | </li> <li><a href="list_users.php" title="example table with listing of users">List users</a> | </li> </ul> <div class="clear">&nbsp;</div> </div> <div id="content"> {content} </div> <div id="footer"> Example usage of the Simplate - simple PHP Template Engine.<br /> Visit <a href="http://www.naijaprogrammer.com">NaijaProgammer</a> for more developer resources. </div> </body> </html>