This is an automated email from the ASF dual-hosted git repository. bertty pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/incubator-wayang-website.git
commit ac01d106dfe8c5b74e553b1c293668a84abf9cb0 Author: Bertty Contreras-Rojas <[email protected]> AuthorDate: Sat Feb 13 18:42:36 2021 -0300 set empty template --- _config.yml | 3 +++ _layouts/default.html | 12 ++++++++++++ _sass/main.scss | 9 +++++++++ assets/css/main.scss | 4 ++++ index.md | 8 ++++++++ 5 files changed, 36 insertions(+) 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..fa0b00a --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html lang="{{ site.lang | default: "en-US" }}"> + <head> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta charset="utf-8"> + <title>{{ page.title }} - {{ site.title }}</title> + <link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}"> + </head> + <body> + {{ content }} + </body> +</html> 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.
