MISP/app/View/Layouts/default.ctp

68 lines
2.5 KiB
Plaintext
Raw Normal View History

2011-11-26 10:45:31 +01:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php echo $this->Html->charset(); ?>
<title>
<?php echo $title_for_layout, ' - ', Configure::read('CyDefSIG.name')?>:
2011-11-26 10:45:31 +01:00
</title>
<?php
echo $this->Html->meta('icon');
2013-05-30 16:40:47 +02:00
// echo $this->Html->css('cake.generic');
echo $this->Html->css('roboto');
2013-05-31 11:35:27 +02:00
echo $this->Html->css('bootstrap'); // see http://twitter.github.io/bootstrap/base-css.html
echo $this->Html->css('datepicker');
echo $this->Html->css('main');
// FIXME chri: re-add print stylesheet
//echo $this->Html->css(array('print'), 'stylesheet', array('media' => 'print'));
2012-03-25 16:25:16 +02:00
echo $this->fetch('meta');
echo $this->fetch('css');
echo $this->fetch('script');
echo $this->Html->script('jquery-1.9.1.min'); // Include jQuery library
2011-11-26 10:45:31 +01:00
?>
<!--?php echo $scripts_for_layout; ?-->
2011-11-26 10:45:31 +01:00
</head>
<body>
<div id="container">
<!--div id="header">
2012-04-02 11:22:19 +02:00
<h1><?php echo $this->Html->link(Configure::read('CyDefSIG.header'), array('controller' => 'events', 'action' => 'index')); ?>
2013-01-28 09:57:30 +01:00
<?php if ($logo = Configure::read('CyDefSIG.logo')) {
echo $this->Html->image($logo, array('alt' => h(Configure::read('CyDefSIG.header')), 'align' => 'right', 'height' => '30'));
2012-04-02 11:22:19 +02:00
}?></h1>
</div-->
<?php echo $this->element('global_menu');?>
<div class="container-fluid" style="padding-top:50px;position:fixed;width:98%;">
<?php echo $this->Session->flash('auth'); ?>
<?php echo $this->Session->flash('error'); ?>
<?php echo $this->Session->flash('gpg'); ?>
<?php echo $this->Session->flash(); ?>
<?php echo $this->Session->flash('email'); ?>
2013-06-03 15:59:22 +02:00
</div>
<br/><br />
<div style="margin-top:50px;">
<?php echo $this->fetch('content'); ?>
</div>
<!--div id="footer">
<div class="noprint">
<h1 style="float:left;">Download: <?php echo $this->Html->link('PGP/GPG key', '/gpg.asc');?></h1>
<h1 style="float:right;"> <?php echo $this->Html->link(__('Log out', true), array('controller' => 'users', 'action' => 'logout'));?></h1>
</div>
2012-03-25 16:25:16 +02:00
<h1 style="text-align:center;"> <?php if (isset($me)) echo Configure::read('CyDefSIG.footerversion'); else echo Configure::read('CyDefSIG.footer')?></h1>
</div-->
2013-06-01 11:05:15 +02:00
<?php
echo $this->element('footer');
2013-06-01 11:05:15 +02:00
echo $this->element('sql_dump');
echo $this->Html->script('bootstrap');
// echo $this->Html->script('bootstrap.min');
2013-06-01 11:05:15 +02:00
echo $this->Html->script('bootstrap-datepicker');
echo $this->Html->script('main');
?>
</div>
2011-11-26 10:45:31 +01:00
</body>
</html>