27 lines
796 B
PHP
27 lines
796 B
PHP
<?php
|
|
/*
|
|
* Default-Template
|
|
*/
|
|
?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
|
|
<head>
|
|
<title><?=((isset($title))?$title:$title_for_layout);?> - <?=__('dreamjob');?></title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="stylesheet" type="text/css" href="/css/dreamjob.css" type="text/css" media="screen" />
|
|
<?php
|
|
echo $this->Html->charset();
|
|
echo $this->Html->css(array('bootstrap.min','bootstrap-wysihtml5','wysiwyg-color','select2','select2-bootstrap'));
|
|
echo $this->Html->meta('icon', $this->Html->url('/favicon.ico'));
|
|
?>
|
|
</head>
|
|
<body>
|
|
<!-- alert -->
|
|
<?=$this->Session->flash(); ?>
|
|
<!-- /alert -->
|
|
|
|
<!-- container -->
|
|
<?=$this->fetch('content'); ?>
|
|
<!-- /container -->
|
|
</body>
|
|
</html>
|