Use Bootstrap's grid system in 404 page

This commit is contained in:
Keichi Takahashi 2015-02-09 13:57:06 +09:00
parent 080202e6cc
commit 6e37b595d1
2 changed files with 3 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{{ partial "header.html" . }}
<section class="not-found">
<h1>404</h1>
That page doesn't exist!
<section class="row not-found">
<h1 class="col-md-4 col-md-offset-4">404</h1>
<div class="col-md-4 col-md-offset-4">That page doesn't exist!</div>
</section>
{{ partial "footer.html" . }}

View File

@ -141,7 +141,6 @@ main {
}
.not-found {
margin: 100px auto;
text-align: center;
}