Header
This commit is contained in:
parent
d435ad36b4
commit
23e4ded0f3
1
.idea/.gitignore
generated
vendored
1
.idea/.gitignore
generated
vendored
@ -8,3 +8,4 @@
|
|||||||
# Datasource local storage ignored files
|
# Datasource local storage ignored files
|
||||||
/dataSources/
|
/dataSources/
|
||||||
/dataSources.local.xml
|
/dataSources.local.xml
|
||||||
|
/php.xml
|
||||||
|
201
CSS/style.css
201
CSS/style.css
@ -1,202 +1,7 @@
|
|||||||
*, *:before, *:after {
|
|
||||||
-moz-box-sizing: border-box;
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #ffffff;
|
background-color: #dff0f2;
|
||||||
color: #666;
|
color: #000000;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
margin: 10px;
|
|
||||||
color: #4d4d4d;
|
|
||||||
font-size: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 span {
|
|
||||||
color: orange;
|
|
||||||
font-size: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
color: orange;
|
|
||||||
padding: 10px 0 0 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
margin-top: 135px;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#wrapper {
|
|
||||||
max-width: 600px;
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #4d4d4d;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.msg {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 17px;
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
|
|
||||||
.msg a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: #09add0;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.msg a:hover {
|
|
||||||
color: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav ul {
|
|
||||||
list-style-type: none;
|
|
||||||
padding: 0;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
padding: 0;
|
||||||
|
|
||||||
nav li {
|
|
||||||
float: left;
|
|
||||||
text-align: center;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
nav li a {
|
|
||||||
display: block;
|
|
||||||
width: 100px;
|
|
||||||
height: 30px;
|
|
||||||
border: 1px solid #4d4d4d;
|
|
||||||
background-color: #4d4d4d;
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
margin: 5px;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav li a:hover {
|
|
||||||
background-color: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav {
|
|
||||||
position: fixed;
|
|
||||||
background: white;
|
|
||||||
top: 0px;
|
|
||||||
width: 600px;
|
|
||||||
text-align: center;
|
|
||||||
padding-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#metanavi {
|
|
||||||
color: #4d4d4d;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#metanavi a {
|
|
||||||
background: #09add0;
|
|
||||||
border: none;
|
|
||||||
width: 100px;
|
|
||||||
margin: 0 5px 0 5px;
|
|
||||||
float: right;
|
|
||||||
padding: 2px;
|
|
||||||
border-radius: 5px;
|
|
||||||
color:#fff;
|
|
||||||
cursor:pointer;
|
|
||||||
font-size: 12px;
|
|
||||||
text-decoration: none;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#metanavi a:hover {
|
|
||||||
background: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
.articleImg {
|
|
||||||
width: 100%;
|
|
||||||
border: 2px solid lightskyblue;
|
|
||||||
padding: 5px;
|
|
||||||
margin: 0 0 15px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.welcomeImg {
|
|
||||||
width: 100%;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.articleInfo {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*** Formulare ***/
|
|
||||||
|
|
||||||
form {
|
|
||||||
width: 440px;
|
|
||||||
margin: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
width: 120px;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 5px 15px 10px 0;
|
|
||||||
vertical-align: top;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
label.errorMsg {
|
|
||||||
width: 420px;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0 5px 15px 0;
|
|
||||||
vertical-align: top;
|
|
||||||
text-align: right;
|
|
||||||
color: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type="submit"] {
|
|
||||||
width: 100px;
|
|
||||||
margin-left: 330px;
|
|
||||||
}
|
|
||||||
|
|
||||||
form textarea {
|
|
||||||
width: 300px;
|
|
||||||
height: 150px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
form select {
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
||||||
/*** Loesung Workshop-Seite ***/
|
|
||||||
|
|
||||||
.textContent {
|
|
||||||
padding: 0 10px 0 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 529px) {
|
|
||||||
.textContent {
|
|
||||||
padding: 15px 0 0 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.event h3 {
|
|
||||||
margin: 15px 0 5px 0;
|
|
||||||
font-size: 20px;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.orange {
|
|
||||||
color: orange;
|
|
||||||
display: block;
|
|
||||||
font-size: 18px;
|
|
||||||
margin: 0 0 5px 0;
|
|
||||||
}
|
}
|
300
CSS/style_.css
300
CSS/style_.css
@ -1,300 +0,0 @@
|
|||||||
/*
|
|
||||||
To change this license header, choose License Headers in Project Properties.
|
|
||||||
To change this template file, choose Tools | Templates
|
|
||||||
and open the template in the editor.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
Created on : 01.04.2016, 15:39:10
|
|
||||||
Author : reich
|
|
||||||
*/
|
|
||||||
|
|
||||||
*, *:before, *:after {
|
|
||||||
-moz-box-sizing: border-box;
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#wrapper {
|
|
||||||
max-width: 600px;
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #4d4d4d;
|
|
||||||
padding: 10px;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
margin-top: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
margin: 10px;
|
|
||||||
color: #4d4d4d;
|
|
||||||
font-size: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 span {
|
|
||||||
/*color: #09add0;*/
|
|
||||||
color: orange;
|
|
||||||
font-size: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav ul {
|
|
||||||
list-style-type: none;
|
|
||||||
padding: 0;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav li {
|
|
||||||
float: left;
|
|
||||||
text-align: center;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
nav li a {
|
|
||||||
display: block;
|
|
||||||
width: 100px;
|
|
||||||
height: 30px;
|
|
||||||
border: 1px solid #4d4d4d;
|
|
||||||
background-color: #4d4d4d;
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
margin: 5px;
|
|
||||||
text-align: center;
|
|
||||||
vertical-align: middle;
|
|
||||||
line-height: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav li a:hover {
|
|
||||||
background-color: lightskyblue;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav {
|
|
||||||
position: fixed;
|
|
||||||
background: white;
|
|
||||||
top: 0px;
|
|
||||||
margin-left: -10px;
|
|
||||||
width: 600px;
|
|
||||||
text-align: center;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
margin-top: 145px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav_back {
|
|
||||||
float: right;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.articleImg {
|
|
||||||
width: 200px;
|
|
||||||
float: left;
|
|
||||||
border: 2px solid lightskyblue;
|
|
||||||
padding: 5px;
|
|
||||||
margin: 5px 10px 5px 5px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.articleInfo {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
width: 80px;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 5px;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
label.errorMsg {
|
|
||||||
width: 380px;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 5px;
|
|
||||||
vertical-align: top;
|
|
||||||
text-align: right;
|
|
||||||
color: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type="submit"] {
|
|
||||||
width: 100px;
|
|
||||||
margin-right: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#entry {
|
|
||||||
width: 300px;
|
|
||||||
height: 150px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
form {
|
|
||||||
width: 400px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#metanavi {
|
|
||||||
color: #4d4d4d;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#metanavi a {
|
|
||||||
background: #09add0;
|
|
||||||
border: none;
|
|
||||||
width: 100px;
|
|
||||||
margin: 0 5px 0 5px;
|
|
||||||
float: right;
|
|
||||||
padding: 2px;
|
|
||||||
border-radius: 5px;
|
|
||||||
color:#fff;
|
|
||||||
cursor:pointer;
|
|
||||||
font-size: 12px;
|
|
||||||
text-decoration: none;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#metanavi a:hover {
|
|
||||||
background: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup form {
|
|
||||||
padding: 20px 0 60px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup p {
|
|
||||||
margin: 0 0 5px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup {
|
|
||||||
margin: auto;
|
|
||||||
width: 450px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup ol {
|
|
||||||
list-style-type: none;
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup li {
|
|
||||||
margin: 0 0 20px;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup label {
|
|
||||||
width: 150px;
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
text-align: right;
|
|
||||||
padding-right: 15px;
|
|
||||||
font-weight: 500;
|
|
||||||
line-height: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup span {
|
|
||||||
margin-top: 10px;
|
|
||||||
width: 400px;
|
|
||||||
color: orange;
|
|
||||||
text-align: right;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup input {
|
|
||||||
display: inline-block;
|
|
||||||
width: 250px;
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
padding: 6px 10px 6px 6px;
|
|
||||||
-webkit-border-radius: 5px;
|
|
||||||
-moz-border-radius: 5px;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup input[type="submit"]{
|
|
||||||
background: #09add0;
|
|
||||||
border:none;
|
|
||||||
width:180px;
|
|
||||||
margin-left: 230px;
|
|
||||||
padding:5px;
|
|
||||||
border-radius:5px;
|
|
||||||
color:#fff;
|
|
||||||
font-weight:bold;
|
|
||||||
cursor:pointer;
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup input[type="submit"]:hover {
|
|
||||||
background: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
#signup label.errorMsg {
|
|
||||||
width: 400px;
|
|
||||||
padding:5px 5px 5px 0;
|
|
||||||
color: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
.autherIcons i {
|
|
||||||
margin: 0 5px 0 5px;
|
|
||||||
color: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
.autherIcons i:hover {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*** Formulare ***/
|
|
||||||
|
|
||||||
form {
|
|
||||||
width: 440px;
|
|
||||||
margin: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
width: 120px;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 5px 15px 10px 0;
|
|
||||||
vertical-align: top;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
label.errorMsg {
|
|
||||||
width: 420px;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0 5px 15px 0;
|
|
||||||
vertical-align: top;
|
|
||||||
text-align: right;
|
|
||||||
color: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type="submit"] {
|
|
||||||
width: 100px;
|
|
||||||
margin-left: 330px;
|
|
||||||
}
|
|
||||||
|
|
||||||
form textarea {
|
|
||||||
width: 300px;
|
|
||||||
height: 150px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
form select {
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
@ -1,66 +0,0 @@
|
|||||||
/*
|
|
||||||
Created on : 04.01.2018, 04:54:54
|
|
||||||
Author : reich
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*** 12 spaltiges Grid mit Flexboxen ***/
|
|
||||||
|
|
||||||
/*** Container ***/
|
|
||||||
.row {
|
|
||||||
display: flex;
|
|
||||||
flex-flow: row;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*** Spaltendefinitionen Smartphone Ansicht ***/
|
|
||||||
@media (max-width: 529px) {
|
|
||||||
.col-s-12 {
|
|
||||||
flex: 0 0 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*** Loesung Workshop-Seite ***/
|
|
||||||
.textContent {
|
|
||||||
padding: 15px 0 0 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*** Spaltendefinitionen Tablet Ansicht ***/
|
|
||||||
@media (min-width: 530px) {
|
|
||||||
.col-m-1 {
|
|
||||||
flex: 0 0 100%;
|
|
||||||
}
|
|
||||||
.col-m-4 {
|
|
||||||
flex: 0 0 33.3333333%;
|
|
||||||
}
|
|
||||||
.col-m-6 {
|
|
||||||
flex: 0 0 50%;
|
|
||||||
}
|
|
||||||
.col-m-12 {
|
|
||||||
flex: 0 0 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*** Spaltendefinitionen Desktop Ansicht ***/
|
|
||||||
@media (min-width: 800px) {
|
|
||||||
.col-1 {
|
|
||||||
flex: 0 0 8.3333333%;
|
|
||||||
}
|
|
||||||
.col-3 {
|
|
||||||
flex: 0 0 25%;
|
|
||||||
}
|
|
||||||
.col-4 {
|
|
||||||
flex: 0 0 33.3333333%;
|
|
||||||
}
|
|
||||||
.col-5 {
|
|
||||||
flex: 0 0 41.6666667%;
|
|
||||||
}
|
|
||||||
.col-6 {
|
|
||||||
flex: 0 0 50%;
|
|
||||||
}
|
|
||||||
.col-8 {
|
|
||||||
flex: 0 0 66.66666667%;
|
|
||||||
}
|
|
||||||
.col-12 {
|
|
||||||
flex: 0 0 100%;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
include dirname(__DIR__).'/header.phtml';
|
include dirname(__DIR__) . '/header.phtml';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="msg">
|
<div class="msg">
|
||||||
@ -9,4 +9,4 @@ include dirname(__DIR__).'/header.phtml';
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<?php include dirname(__DIR__).'/footer.phtml'; ?>
|
<?php include dirname(__DIR__) . '/footer.phtml'; ?>
|
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
include dirname(__DIR__).'/header.phtml';
|
include dirname(__DIR__) . '/header.phtml';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
@ -33,4 +33,4 @@ include dirname(__DIR__).'/header.phtml';
|
|||||||
<input type="hidden" name="do" value="validateForm">
|
<input type="hidden" name="do" value="validateForm">
|
||||||
<input type="submit" name="submit" value="Absenden"></form>
|
<input type="submit" name="submit" value="Absenden"></form>
|
||||||
|
|
||||||
<?php include dirname(__DIR__).'/footer.phtml'; ?>
|
<?php include dirname(__DIR__) . '/footer.phtml'; ?>
|
@ -1,11 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
include dirname(__DIR__).'/header.phtml';
|
include dirname(__DIR__) . '/header.phtml';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<h2><?=$error?></h2>
|
<h2><?=$error?></h2>
|
||||||
<p><?=$debug?></p>
|
<p><?=$debug?></p>
|
||||||
|
|
||||||
<?php include dirname(__DIR__).'/footer.phtml'; ?>
|
<?php include dirname(__DIR__) . '/footer.phtml'; ?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
0
Views/Footer/footer.css
Normal file
0
Views/Footer/footer.css
Normal file
14
Views/Footer/footer.phtml
Normal file
14
Views/Footer/footer.phtml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="HTML-5">
|
||||||
|
<head>
|
||||||
|
<title>VR Contact</title>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link href="./footer.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="wrapper">
|
||||||
|
<footer id="footer">
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
28
Views/Header/header.css
Normal file
28
Views/Header/header.css
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
a {
|
||||||
|
color: black;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
#navigation {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.link-container {
|
||||||
|
display: grid;
|
||||||
|
width: 80%;
|
||||||
|
grid-template-columns: 20% 20% 56% 4%;
|
||||||
|
background-color: #BAC8D4;
|
||||||
|
border-bottom-right-radius: 10px;
|
||||||
|
border-bottom-left-radius: 10px;
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
#logo {
|
||||||
|
height: 60px;
|
||||||
|
width: 170px;
|
||||||
|
background-image: url("../../images/bibArts.png");
|
||||||
|
background-position: center;
|
||||||
|
background-size: contain;
|
||||||
|
}
|
21
Views/Header/header.phtml
Normal file
21
Views/Header/header.phtml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="HTML-5">
|
||||||
|
<head>
|
||||||
|
<title>VR Contact</title>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link href="./header.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="wrapper">
|
||||||
|
<nav id="navigation">
|
||||||
|
<div class="link-container">
|
||||||
|
<div id="logo" ><a class="link-logo" href="#"></a></div>
|
||||||
|
<a id="link-tickets" class="links" href="#">Tickets</a>
|
||||||
|
<a id="link-infos" class="links" href="?controller=Welcome&do=showWelcome">Infos</a>
|
||||||
|
<a id="link-profil" class="links" href="?controller=Contact&do=showContactForm">Profil</a>
|
||||||
|
<div id="profile-picture"></div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
include dirname(__DIR__).'/header.phtml';
|
include dirname(__DIR__) . '/Header/header.phtml';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<article>
|
<article>
|
||||||
<h2>Virtuelles Museum</h2>
|
<h2>Virtuelles Museum</h2>
|
||||||
<span class="articleInfo">John Doe | 12.08.2018 um 10:18 Uhr</span>
|
<span class="articleInfo">John Doe | 12.08.2018 um 10:18 Uhr</span>
|
||||||
|
|
||||||
@ -18,4 +18,4 @@ include dirname(__DIR__).'/header.phtml';
|
|||||||
Praesent ut quam.
|
Praesent ut quam.
|
||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<?php include dirname(__DIR__).'/footer.phtml'; ?>
|
<?php include dirname(__DIR__) . '/Footer/footer.phtml'; ?>
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
include dirname(__DIR__).'/header.phtml';
|
include dirname(__DIR__) . '/Header/header.phtml';
|
||||||
?>
|
?>
|
||||||
|
<article>
|
||||||
<article>
|
|
||||||
<h2>Implement Controller</h2>
|
<h2>Implement Controller</h2>
|
||||||
<span class="articleInfo">John Doe | 18.07.2018 um 18:43 Uhr</span>
|
<span class="articleInfo">John Doe | 18.07.2018 um 18:43 Uhr</span>
|
||||||
|
|
||||||
@ -18,4 +17,4 @@ include dirname(__DIR__).'/header.phtml';
|
|||||||
Praesent ut quam.
|
Praesent ut quam.
|
||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<?php include dirname(__DIR__).'/footer.phtml'; ?>
|
<?php include dirname(__DIR__) . '/Footer/footer.phtml'; ?>
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
include dirname(__DIR__).'/header.phtml';
|
include dirname(__DIR__) . '/Header/header.phtml';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- <a href="?controller=guestbook&do=showGuestbookForm">Neuen Eintrag schreiben</a> -->
|
|
||||||
<article>
|
<article>
|
||||||
<h2>Willkommen</h2>
|
<h2>Willkommen</h2>
|
||||||
<p>
|
<p>
|
||||||
@ -19,5 +18,5 @@ include dirname(__DIR__).'/header.phtml';
|
|||||||
Nunc sed lacus at augue bibendum dapibus.
|
Nunc sed lacus at augue bibendum dapibus.
|
||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<?php include dirname(__DIR__).'/footer.phtml'; ?>
|
<?php include dirname(__DIR__) . '/Footer/footer.phtml'; ?>
|
||||||
|
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,25 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>VR Contact</title>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link href="CSS/style.css" rel="stylesheet" type="text/css" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="wrapper">
|
|
||||||
<nav>
|
|
||||||
<div id="metanavi">
|
|
||||||
<a href="#">Anmelden</a>
|
|
||||||
</div>
|
|
||||||
<h1><span>V</span>irtual <span>R</span>evolution</h1>
|
|
||||||
<ul>
|
|
||||||
<li><a href="?controller=Welcome&do=showWelcome">Willkommen</a></li>
|
|
||||||
<li><a href="#">Projekte</a></li>
|
|
||||||
<li><a href="#">Workshops</a></li>
|
|
||||||
<li><a href="?controller=Contact&do=showContactForm">Kontakt</a></li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<main>
|
|
BIN
images/bibArts.png
Normal file
BIN
images/bibArts.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.5 KiB |
Binary file not shown.
Before Width: | Height: | Size: 43 KiB |
Binary file not shown.
Before Width: | Height: | Size: 100 KiB |
Binary file not shown.
Before Width: | Height: | Size: 3.4 KiB |
Binary file not shown.
Before Width: | Height: | Size: 16 KiB |
Loading…
x
Reference in New Issue
Block a user