22 lines
432 B
HTML
22 lines
432 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ .Site.LanguageCode }}">
|
||
|
<head>
|
||
|
<title> {{ .Site.Title }} </title>
|
||
|
|
||
|
{{ partial "head.html" . }}
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
{{ partial "header.html" . }}
|
||
|
<div class="container wrapper">
|
||
|
<h1>Uhm... Quoi?</h1>
|
||
|
<div class="post-content">
|
||
|
<p>Je pense que tu t'es perdu, cette page n'éxiste pas</p>
|
||
|
</div>
|
||
|
<div class="push"></div>
|
||
|
</div>
|
||
|
{{ partial "footer.html" . }}
|
||
|
</body>
|
||
|
</html>
|
||
|
|