* initial commit

This commit is contained in:
Danyi Dávid
2018-05-02 11:01:38 +02:00
commit ff2721f67c
39 changed files with 5308 additions and 0 deletions

View 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>

View 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>

View 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; ?>

View 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>