Skip to content

Instantly share code, notes, and snippets.

@steve228uk
Created July 1, 2012 21:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steve228uk/3029688 to your computer and use it in GitHub Desktop.
Save steve228uk/3029688 to your computer and use it in GitHub Desktop.
<!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>&hellip; 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