initial commit
This commit is contained in:
commit
2d94f025b4
5 changed files with 36 additions and 0 deletions
3
_config.yml
Normal file
3
_config.yml
Normal file
|
@ -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.
|
12
_layouts/default.html
Normal file
12
_layouts/default.html
Normal file
|
@ -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>
|
9
_sass/main.scss
Normal file
9
_sass/main.scss
Normal file
|
@ -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;
|
||||
}
|
4
assets/css/main.scss
Normal file
4
assets/css/main.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
---
|
||||
|
||||
@import "main";
|
8
index.md
Normal file
8
index.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: "Happy Jekylling!"
|
||||
---
|
||||
|
||||
## You're ready to go!
|
||||
|
||||
Start developing your Jekyll website.
|
Loading…
Add table
Reference in a new issue