From 2d94f025b4636d3d8b92c8cba60537cbc8eb7456 Mon Sep 17 00:00:00 2001 From: Sadie McIntire Date: Mon, 9 Nov 2020 02:42:09 -0500 Subject: [PATCH] initial commit --- _config.yml | 3 +++ _layouts/default.html | 12 ++++++++++++ _sass/main.scss | 9 +++++++++ assets/css/main.scss | 4 ++++ index.md | 8 ++++++++ 5 files changed, 36 insertions(+) create mode 100644 _config.yml create mode 100644 _layouts/default.html create mode 100644 _sass/main.scss create mode 100644 assets/css/main.scss create mode 100644 index.md diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..a0cd66a --- /dev/null +++ b/_config.yml @@ -0,0 +1,3 @@ +url: "" # the base hostname & protocol for your site, e.g. http://example.com +baseurl: "" # the subpath of your site, e.g. /blog +title: "" # the name of your site, e.g. ACME Corp. diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..a82592f --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,12 @@ + + + + + + {{ page.title }} - {{ site.title }} + + + + {{ content}} + + diff --git a/_sass/main.scss b/_sass/main.scss new file mode 100644 index 0000000..126160d --- /dev/null +++ b/_sass/main.scss @@ -0,0 +1,9 @@ +$backgroundColor: #ffffff; +$bodyColor: #000000; +$bodyFont: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; + +body { + background: $backgroundColor; + color: $bodyColor; + font-family: $bodyFont; +} diff --git a/assets/css/main.scss b/assets/css/main.scss new file mode 100644 index 0000000..9f41894 --- /dev/null +++ b/assets/css/main.scss @@ -0,0 +1,4 @@ +--- +--- + +@import "main"; diff --git a/index.md b/index.md new file mode 100644 index 0000000..82eaafb --- /dev/null +++ b/index.md @@ -0,0 +1,8 @@ +--- +layout: default +title: "Happy Jekylling!" +--- + +## You're ready to go! + +Start developing your Jekyll website.