* initial commit
This commit is contained in:
36
templates/layout/default.phtml
Normal file
36
templates/layout/default.phtml
Normal file
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
|
||||
<title><?= $this->e($title) ?> - zend-expressive</title>
|
||||
<link rel="shortcut icon" href="https://framework.zend.com/ico/favicon.ico"/>
|
||||
<link rel="stylesheet" href="<?= $this->serverurl('/styles/normalize.css') ?>"/>
|
||||
<link rel="stylesheet" href="<?= $this->serverurl('/styles/main.css') ?>"/>
|
||||
<?= $this->section('stylesheets') ?>
|
||||
</head>
|
||||
<body>
|
||||
<div class="app-container">
|
||||
<header class="main-header">
|
||||
<span>Gran Prize</span>
|
||||
<span>
|
||||
Interdisciplinary
|
||||
Innovative
|
||||
Award
|
||||
</span>
|
||||
GP logo
|
||||
</header>
|
||||
<nav class="main-nav"><?=$this->navigation()?></nav>
|
||||
<?= $this->section('content') ?>
|
||||
<footer class="main-footer">
|
||||
<div class="footer-content">
|
||||
Sponsored by:
|
||||
SIGMA
|
||||
ERICSSON
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<?= $this->section('javascript') ?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user