_layouts/404.html in raikar06-0.1.0 vs _layouts/404.html in raikar06-0.1.1
- old
+ new
@@ -1,21 +1,20 @@
-<!doctype html>
-<html lang="en">
- <head>
- <meta charset="utf-8">
- <title>{{ page.title }}</title>
- <link rel="stylesheet" href="/css/style.css">
- </head>
- <body>
- <nav>
- <a href="/">Home</a>
- <a href="/blog/">Blog</a>
- </nav>
- <h1 >{{ page.title }}</h1>
- <section style="background-color:rgb(59, 113, 137);">
- <p><strong>{{ content }}</strong></p>
- </section>
- <footer>
- © to me
- </footer>
- </body>
-</html>
+<style type="text/css" media="screen">
+ .container {
+ margin: 10px auto;
+ max-width: 600px;
+ text-align: center;
+ background-color: rgb(65, 56, 56);
+ }
+ h1 {
+ margin: 30px 0;
+ font-size: 4em;
+ line-height: 1;
+ letter-spacing: -1px;
+ }
+ </style>
+
+ <div class="container">
+ <h1>Home page</h1>
+
+ <p><strong> {{ content }}</strong></p>
+ </div>
\ No newline at end of file