* initial commit
This commit is contained in:
15
templates/app/home-page.phtml
Normal file
15
templates/app/home-page.phtml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php $this->layout('layout::default', ['title' => 'Home']) ?>
|
||||
<section class="content-container">
|
||||
<section class="profile-title">
|
||||
|
||||
</section>
|
||||
<article class="profile">
|
||||
<section class="profile-image">
|
||||
|
||||
</section>
|
||||
</article>
|
||||
</section>
|
||||
|
||||
<aside class="profile-image">
|
||||
|
||||
</aside>
|
||||
9
templates/error/404.phtml
Normal file
9
templates/error/404.phtml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php $this->layout('layout::default', ['title' => '404 Not Found']) ?>
|
||||
|
||||
<h1>Oops!</h1>
|
||||
<h2>This is awkward.</h2>
|
||||
<p>We encountered a 404 Not Found error.</p>
|
||||
<p>
|
||||
You are looking for something that doesn't exist or may have moved. Check out one of the links on this page
|
||||
or head back to <a href="/">Home</a>.
|
||||
</p>
|
||||
11
templates/error/error.phtml
Normal file
11
templates/error/error.phtml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php $this->layout('layout::default', ['title' => sprintf('%d %s', $status, $reason)]) ?>
|
||||
|
||||
<h1>Oops!</h1>
|
||||
<h2>This is awkward.</h2>
|
||||
<p>We encountered a <?=$this->e($status)?> <?=$this->e($reason)?> error.</p>
|
||||
<?php if ($status == 404) : ?>
|
||||
<p>
|
||||
You are looking for something that doesn't exist or may have moved. Check out one of the links on this page
|
||||
or head back to <a href="/">Home</a>.
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
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