118 lines
3.1 KiB
Plaintext
118 lines
3.1 KiB
Plaintext
|
<?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"/>
|
||
|
<?php
|
||
|
echo $this->Html->charset();
|
||
|
echo $this->Html->css(array('bootstrap.min','dreamjob'));
|
||
|
echo $this->Html->meta('icon', $this->Html->url('/favicon.ico'));
|
||
|
?>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="bg" id="logo_bar">
|
||
|
<div id="logo">
|
||
|
<?=$this->Html->image('logo.png',array('url'=>array('controller'=>'home','action'=>'home'))); ?>
|
||
|
</div>
|
||
|
<div id="logo_right"><?=$this->Html->link('Handy',array('controller'=>'home','action'=>'home'));?></div>
|
||
|
</div>
|
||
|
<div id="navbar">
|
||
|
<!-- navbar -->
|
||
|
<?php
|
||
|
$this->startIfEmpty('navbar');
|
||
|
echo $this->element('navbar');
|
||
|
$this->end();
|
||
|
|
||
|
echo $this->fetch('navbar');
|
||
|
?>
|
||
|
<!-- /navbar -->
|
||
|
</div>
|
||
|
<div class="bg columns">
|
||
|
<div class="bar">
|
||
|
<div id="barleft">
|
||
|
<!-- barleft -->
|
||
|
<?php
|
||
|
$this->startIfEmpty('barleft');
|
||
|
echo $this->element('barleft');
|
||
|
$this->end();
|
||
|
|
||
|
echo $this->fetch('barleft');
|
||
|
?>
|
||
|
<!-- /barleft -->
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="column-center">
|
||
|
<div id="alert">
|
||
|
<!-- alert -->
|
||
|
<?=$this->Session->flash(); ?>
|
||
|
<!-- /alert -->
|
||
|
</div>
|
||
|
<div id="container">
|
||
|
<!-- container -->
|
||
|
<?=$this->fetch('content'); ?>
|
||
|
<!-- /container -->
|
||
|
</div>
|
||
|
<div class="loadingModel"></div>
|
||
|
</div>
|
||
|
<div class="bar">
|
||
|
<div id="barright">
|
||
|
<!-- barright -->
|
||
|
<?php
|
||
|
$this->startIfEmpty('barright');
|
||
|
echo $this->element('barright');
|
||
|
$this->end();
|
||
|
|
||
|
echo $this->fetch('barright');
|
||
|
?>
|
||
|
<!-- /barright -->
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id="navdown" class="columns">
|
||
|
<div class="bar"></div>
|
||
|
<div class="column-center">
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td
|
||
|
<ul class="list-unstyled">
|
||
|
<li><?=__('dreamjob.help');?></li>
|
||
|
<li><?=__('dreamjob.faq');?></li>
|
||
|
</ul>
|
||
|
</td>
|
||
|
<td>
|
||
|
<ul class="list-unstyled">
|
||
|
<li><?=__('dreamjob.sponsorus');?></li>
|
||
|
<li><?=__('dreamjob.cooperators');?></li>
|
||
|
<li><?=__('dreamjob.advertisers');?></li>
|
||
|
</ul>
|
||
|
</td>
|
||
|
<td></td>
|
||
|
<td>
|
||
|
<ul class="list-unstyled">
|
||
|
<li><?=$this->Html->link(__('dreamjob.contact'),array('controller'=>'home','action'=>'contact'));?></li>
|
||
|
<li><?=$this->Html->link(__('dreamjob.uscompany'),'http://www.miconware.de/',array('rel'=>"external", 'target'=>"_blank"));?></li>
|
||
|
</ul>
|
||
|
</td>
|
||
|
<td>
|
||
|
<ul class="list-unstyled">
|
||
|
<li><?=__('dreamjob.agb');?></li>
|
||
|
<li><?=$this->Html->link(__('dreamjob.impressum'),array('controller'=>'home','action'=>'impressum'));?></li>
|
||
|
<li><?=__('dreamjob.advbyus');?></li>
|
||
|
</ul>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
<div class="bar"></div>
|
||
|
</div>
|
||
|
<!-- java script -->
|
||
|
<?php
|
||
|
echo $this->Html->script(array('jquery.min','bootstrap.min','dreamjob'));
|
||
|
?>
|
||
|
</body>
|
||
|
</html>
|