mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00

* Make the theme compliant with W3C standards (#55) * Dropped the line because chrome tab is deprecated. * On header, "li" elements are meant to surround the "a" elements and not the other way around. * Dropped all section tags I could find at first glance, as they had no semantic meaning and were firing warnings at the W3C validator. * Change "middot" from a helper div to a helper class since putting div's inside ul's is not compliant * Fixed a problem of the previous commit. A middot would not hide if on mobile. * Fix archetypes bug with Go templates * Fix additional validation error in 404
24 lines
639 B
HTML
24 lines
639 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>404 - Page not found</title>
|
|
{{ partial "head_includes.html" . }}
|
|
<style>
|
|
{{ partial "css/404.css" . | safeCSS }}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img src={{ .Site.Params.logofile }} class="logo" alt="logo" />
|
|
<div class="container f04">
|
|
<div class="content">
|
|
<div class="header column">
|
|
<div class="name">404</div>
|
|
</div>
|
|
<div class="detail">The page you were looking for does not exist.</div>
|
|
<div class="suggestion"><a href="/">Visit the home page</a></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|