-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19f01d3
commit b04de1e
Showing
8 changed files
with
626 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ _site/ | |
# Ignore folders generated by Bundler | ||
.bundle/ | ||
vendor/ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
url: "https://rogancodes.github.io" # the base hostname & protocol for your site, e.g. http://example.com | ||
baseurl: "" # the subpath of your site, e.g. /blog | ||
title: "Rogan Blog" # the name of your site, e.g. ACME Corp. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
Oops, something went wrong.