mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
1f8dd75a34
- default set of routes no longer routes all unknown requests to Pages controller (/pages/* is used now for that) - Pages::index is used as default home, I'll try to make it read all the controllers and methods and present them as a website menu - added tag definitions for cssTag and charsetTag - extended NeatArray class with some more methods - DbFactory auto-loads database configuration - missing error message added (for no action set) - /logs directory added (at least, I hope) git-svn-id: https://svn.cakephp.org/repo/trunk/cake@165 3807eeeb-6ff5-0310-8944-8be069107fe0
16 lines
396 B
Text
16 lines
396 B
Text
<!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" lang="pl" xml:lang="pl">
|
|
<head>
|
|
<title><?=$title_for_layout?></title>
|
|
<?=$this->charsetTag('UTF-8')?>
|
|
<?=$this->cssTag('default')?>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1><?=$title_for_layout?></h1>
|
|
|
|
<?=$content_for_layout?>
|
|
|
|
</body>
|
|
</html>
|