37 lines
843 B
HTML
Executable File
37 lines
843 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang='en'>
|
|
<head>
|
|
<title>Quick Fix - Blog - Johannes Olzem</title>
|
|
<meta name='description' content="Johannes Olzem's Webspace.">
|
|
<meta charset='utf-8'>
|
|
<link rel='stylesheet' href='/css/style.css'>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
|
<link rel='icon' href='/favico.ico'>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<a href='/'>Johannes Olzem's Webspace</a>
|
|
</header>
|
|
<nav>
|
|
<a href='/blog/'>Blog</a>
|
|
<a href='/about/'>About Me</a>
|
|
<a href='/contact/'>Contact</a>
|
|
</nav>
|
|
<main>
|
|
<h1>{{ Title }}</h1>
|
|
<h2>{{ Problem }}</h2>
|
|
<br>
|
|
<p>
|
|
{{ Fix }}
|
|
</p>
|
|
<h2>Explanation</h2>
|
|
<p>
|
|
{{ Explanation }}
|
|
</p>
|
|
</main>
|
|
<footer>
|
|
<h6><a href><script>document.write(window.location.href);</script></a></h6>
|
|
</footer>
|
|
</body>
|
|
</html>
|