Skip to content

Instantly share code, notes, and snippets.

@klemenzarn
Created April 14, 2013 11:28
Show Gist options
  • Save klemenzarn/5382370 to your computer and use it in GitHub Desktop.
Save klemenzarn/5382370 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8" />
<title>Feri</title>
<?php
echo $this->Html->meta('icon');
echo $this->Html->css('cake.generic');
echo $this->fetch('meta');
echo $this->fetch('css');
echo $this->fetch('script');
?>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script>
</head>
<body>
<div id="glava">
<?php echo $this->Html->image('logo_feri.png', array('alt' => 'logo', 'id' => 'logo_feri')); ?>
</div>
<div id="menu">
<ul id="menu2">
<li><a href="/feri/index">Domov</a></li>
<li><a href="/feri/oglasna">Oglasna deska</a></li>
<li><a href="/feri/novice">Novice</a></li>
<li><a href="/feri/index/informacije_studenti">Informacije za študente</a></li>
<li><a href="http://pridi-na-feri.si/">Informacije za dijake</a></li>
<li><a href="#">Prijava ;D</a></li>
</ul>
</div>
<div id="content">
<?php echo $this->Session->flash(); ?>
<?php echo $this->fetch('content'); ?>
</div>
<div id="noga">
<?php echo $this->Html->image('logo_univerza.png', array('id' => 'logo_univerza')) ?>
</div>
<?php echo $this->element('sql_dump'); ?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment