-
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
c12b663
commit 50b861c
Showing
12 changed files
with
3,572 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
*.gem | ||
.bundle | ||
.jekyll-cache | ||
.jekyll-metadata | ||
.sass-cache | ||
_site | ||
Gemfile.lock | ||
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
|
||
source "https://rubygems.org" | ||
gemspec | ||
gem 'jekyll-postcss' |
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,31 @@ | ||
title: Your awesome title | ||
author: GitHub User | ||
email: [email protected] | ||
description: > # this means to ignore newlines until "twitter_username:" | ||
Write an awesome description for your new site here. You can edit this | ||
line in _config.yml. It will appear in your document head meta (for | ||
Google search results) and in your feed.xml site description. | ||
url: "" | ||
baseurl: "" | ||
|
||
twitter_username: jekyllrb | ||
github_username: jekyll | ||
rss: rss | ||
|
||
show_excerpts: false | ||
postcss: | ||
cache: false | ||
|
||
exclude: | ||
- package.json | ||
- postcss.config.js | ||
- tailwind.config.js | ||
- yarn.lock | ||
|
||
#theme: jekyll-theme-foursquare-church | ||
|
||
plugins: | ||
- jekyll-postcss | ||
#jekyll-feed | ||
## - jekyll-seo-tag |
Empty file.
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 |
---|---|---|
@@ -1 +1,12 @@ | ||
{{ content }} | ||
<!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/tailwindcss.css" | relative_url }}"> | ||
</head> | ||
<body> | ||
{{ content }} | ||
</body> | ||
</html> |
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,7 @@ | ||
--- | ||
--- | ||
|
||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
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,7 @@ | ||
--- | ||
title: Jekyll Theme | ||
description: Some Description | ||
--- | ||
<div class="text-red-500"> | ||
Test Jekyll | ||
</div> |
Oops, something went wrong.