From 5d9520d6e16a3a200726f6896577594bb8a14e7d Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Fri, 31 Jul 2020 12:54:04 +0300 Subject: convert temp page to jekyll just move things a bit. add simple default layout and move stylesheet to assets folder. --- _config.yml | 3 +++ _layouts/default.html | 11 +++++++++++ _sass/temp.scss | 21 +++++++++++++++++++++ assets/css/style.scss | 3 +++ index.html | 40 ++++++---------------------------------- 5 files changed, 44 insertions(+), 34 deletions(-) create mode 100644 _layouts/default.html create mode 100644 _sass/temp.scss create mode 100644 assets/css/style.scss diff --git a/_config.yml b/_config.yml index f8f9c9c..67d6e2a 100644 --- a/_config.yml +++ b/_config.yml @@ -1,3 +1,6 @@ +title: AAOTH + +# exclude non-site files exclude: - LICENSE - README.md diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..092fc22 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,11 @@ + + + + + {{ site.title }} + + + + {{ content }} + + diff --git a/_sass/temp.scss b/_sass/temp.scss new file mode 100644 index 0000000..b215686 --- /dev/null +++ b/_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; +} diff --git a/assets/css/style.scss b/assets/css/style.scss new file mode 100644 index 0000000..bd78703 --- /dev/null +++ b/assets/css/style.scss @@ -0,0 +1,3 @@ +--- +--- +@import "temp"; diff --git a/index.html b/index.html index b6be0b7..bffe507 100644 --- a/index.html +++ b/index.html @@ -1,34 +1,6 @@ - - - - - -aaoth.xyz - - -

Wait

-

There's nothing yet, but soon

- - +--- +layout: default +title: aaoth.xyz +--- +

Wait

+

There's nothing yet, but soon

-- cgit v1.2.3