convert temp page to jekyll just move things a bit. add simple default layout and move stylesheet to assets folder.
la-ninpre leobrekalini@gmail.com
Fri, 31 Jul 2020 12:54:04 +0300
5 files changed,
44 insertions(+),
34 deletions(-)
M
_config.yml
→
_config.yml
@@ -1,3 +1,6 @@
+title: AAOTH + +# exclude non-site files exclude: - LICENSE - README.md
A
_layouts/default.html
@@ -0,0 +1,11 @@
+<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <title>{{ site.title }}</title> + <link rel="stylesheet" href="assets/css/style.css"> + </head> + <body> + {{ content }} + </body> +</html>
A
_sass/temp.scss
@@ -0,0 +1,21 @@
+* { + margin: 0; + padding: 0; +} +html { + font-family: sans-serif; + background: black; +} +body { + color: white; + margin-left: auto; + margin-right: auto; + width: auto; + max-width: 800px; +} +h1 { + border-bottom: 1px solid white; +} +p { + margin: 30px 0; +}
M
index.html
→
index.html
@@ -1,34 +1,6 @@
-<!doctype html> -<html> - <head> - <meta charset="utf-8"> -<style> -* { - margin: 0; - padding: 0; -} -html { - font-family: sans-serif; - background: black; -} -body { - color: white; - margin-left: auto; - margin-right: auto; - width: auto; - max-width: 800px; -} -h1 { - border-bottom: 1px solid white; -} -p { - margin: 30px 0; -} -</style> -<title>aaoth.xyz</title> - </head> - <body> - <h1>Wait</h1> - <p>There's nothing yet, but soon</p> - </body> -</html> +--- +layout: default +title: aaoth.xyz +--- +<h1>Wait</h1> +<p>There's nothing yet, but soon</p>