dreamjob/app/View/Layouts/extern_mini.ctp

27 lines
799 B
Plaintext
Raw Normal View History

2015-02-28 01:58:24 +01:00
<?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>