Created
May 15, 2018 00:40
-
-
Save mosesliao/a03776f32db5417b007bcf3ee39c350a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org) | |
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | |
* | |
* Licensed under The MIT License | |
* For full copyright and license information, please see the LICENSE.txt | |
* Redistributions of files must retain the above copyright notice. | |
* | |
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | |
* @link https://cakephp.org CakePHP(tm) Project | |
* @since 0.10.0 | |
* @license https://opensource.org/licenses/mit-license.php MIT License | |
*/ | |
$cakeDescription = 'CakePHP: the rapid development php framework'; | |
?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<?= $this->Html->charset() ?> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title> | |
<?= $cakeDescription ?>: | |
<?= $this->fetch('title') ?> | |
</title> | |
<?= $this->Html->script('https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/core.js') ?> | |
<?= $this->Html->meta('icon') ?> | |
<?= $this->Html->css('base.css') ?> | |
<?= $this->Html->css('cake.css') ?> | |
<?= $this->fetch('meta') ?> | |
<?= $this->fetch('css') ?> | |
<?= $this->fetch('script') ?> | |
</head> | |
<body> | |
<div class="container clearfix"> | |
<?= $this->fetch('content') ?> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment