Created
July 1, 2012 21:23
-
-
Save steve228uk/3029688 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<meta name="abstract" content="Personal and professional portfolio of Kevin Steinhardt"> | |
<meta name="author" content="Kevin Steinhardt"> | |
<meta name="copyright" content="Creative Commons Attribution 3.0"> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
<title>Kevin Steinhardt</title> | |
</head> | |
<body> | |
<div id="page"> | |
<div id="header"></div> | |
<nav> | |
<?php | |
?> | |
</nav> | |
<div id="container"> | |
<?php | |
ini_set('display_errors',1); | |
include ('markdown+strreplace.php'); | |
if (!isset($_GET['page'])) { | |
$page = 'Kevin.markdown'; | |
} else { | |
$page = $_GET['page'].'.markdown'; | |
} | |
echo Markdown(file_get_contents('pages/'.$page)); | |
?> | |
<p id="tagline">Elke wasbeer heeft een staart <em>maar</em>… niet elke staart heeft een wasbeer.</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment