|
|
@@ -0,0 +1,43 @@
|
|
|
+<?php
|
|
|
+$this->loadHelper('Html');
|
|
|
+
|
|
|
+$cakeDescription = 'CakePHP: the rapid development php framework';
|
|
|
+?>
|
|
|
+<!DOCTYPE html>
|
|
|
+<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
+<head>
|
|
|
+ <?= $this->Html->charset(); ?>
|
|
|
+ <title>
|
|
|
+ <?= $cakeDescription ?>:
|
|
|
+ <?= $this->fetch('title'); ?>
|
|
|
+ </title>
|
|
|
+ <?php
|
|
|
+ echo $this->Html->meta('icon');
|
|
|
+
|
|
|
+ echo $this->Html->css('cake.generic');
|
|
|
+
|
|
|
+ echo $this->fetch('script');
|
|
|
+ ?>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <div id="container">
|
|
|
+ <div id="header">
|
|
|
+ <h1><?= $this->Html->link($cakeDescription, 'http://cakephp.org'); ?></h1>
|
|
|
+ </div>
|
|
|
+ <div id="content">
|
|
|
+
|
|
|
+ <?= $this->Flash->render(); ?>
|
|
|
+ <?= $this->fetch('content'); ?>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div id="footer">
|
|
|
+ <?= $this->Html->link(
|
|
|
+ $this->Html->image('cake.power.gif', ['alt' => $cakeDescription, 'border' => '0']),
|
|
|
+ 'http://www.cakephp.org/',
|
|
|
+ ['target' => '_blank', 'escape' => false]
|
|
|
+ );
|
|
|
+ ?>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+</html>
|