Update 404.html

This commit is contained in:
Michael Noronha
2017-08-04 00:31:09 -04:00
parent 7e0d03aed4
commit a7cde56381
2 changed files with 33 additions and 12 deletions

2
.gitignore vendored
View File

@@ -2,5 +2,7 @@
.DS_Store
*/**/.DS_Store
*.swp
# exampleSite
exampleSite/public

View File

@@ -1,16 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>404 - Page not found</title>
{{ partial "head_includes.html" . }}
<style>
.logo {
vertical-align: middle;
max-width: 300px;
}
.content {
margin: 3em auto;
text-align: center;
}
.header {
margin-left: initial;
margin-right: intial;
padding: 0 !important;
}
</style>
</head>
<body>
<section class="main">
<img src={{ .Site.Params.logofile }} style="max-width:300px" alt="logo"></img>
<div class="container f04">
<div class="content">
<section class="header">
<div class="name">404</div>
</section>
<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>
<img src={{ .Site.Params.logofile }} class="logo" alt="logo"></img>
<div class="container f04">
<div class="content">
<section class="header">
<div class="name">404</div>
</section>
<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>
</section>
</div>
</body>
</html>