added project files

This commit is contained in:
Andreas Schaafsma
2021-05-19 12:55:06 +02:00
parent cccec24361
commit 4766ed7fb0
61 changed files with 961 additions and 0 deletions

15
porto/pages/404.php Normal file
View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>404 ERROR</title>
<style>
*{
font-family: monospace, roboto, helvetica, arial, sans-serif;
}
</style>
</head>
<body>
<h1 style="margin-left: auto; margin-right: auto; text-align: center;">404 ERROR</h1>
<h1 style="margin-left: auto; margin-right: auto; text-align: center;">SNEL TERUG JONGEMAN, U HEEFT EEN VERKEERDE AFSLAG GENOMEN!!!!</h1>
</body>
</html>

12
porto/pages/aboutme.php Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<?php include_once("components/dochead.php"); ?>
<body>
<?php include_once('components/header.php')?>
<main class = "flexcolumn min-size">
<?php include_once("components/content_aboutme.php");?>
<div class="flexcolumn"></div>
</main>
<?php include_once("components/footer.html"); ?>
</body>
</html>

12
porto/pages/home.php Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<?php include_once("components/dochead.php"); ?>
<body>
<?php include_once('components/header.php'); ?>
<main class = "flexcolumn min-size">
<?php include_once("components/content_home.php"); ?>
<div class="flexcolumn"></div>
</main>
<?php include_once("components/footer.html"); ?>
</body>
</html>

12
porto/pages/project.php Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<?php include_once("components/dochead.php"); ?>
<body>
<?php include_once('components/header.php')?>
<main class = "flexcolumn min-size">
<?php include_once("components/content_project.php"); ?>
<div class="flexcolumn"></div>
</main>
<?php include_once("components/footer.html"); ?>
</body>
</html>

14
porto/pages/projecten.php Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<?php include_once("components/dochead.php"); ?>
<body>
<?php include_once('components/header.php');?>
<main class = "flexcolumn min-size">
<div class = "flexrow">
<?php include_once("components/content_categories.php");?>
</div>
<div class="flexcolumn"></div>
</main>
<?php include_once("components/footer.html"); ?>
</body>
</html>