Skip to content

Commit

Permalink
Add tailwindcss
Browse files Browse the repository at this point in the history
  • Loading branch information
NeftaliYagua committed Feb 9, 2024
1 parent c12b663 commit 50b861c
Show file tree
Hide file tree
Showing 12 changed files with 3,572 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
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
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

source "https://rubygems.org"
gemspec
gem 'jekyll-postcss'
31 changes: 31 additions & 0 deletions _config.yml
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 added _data/i18n/testimonials.yml
Empty file.
13 changes: 12 additions & 1 deletion _layouts/default.html
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>
7 changes: 7 additions & 0 deletions assets/css/tailwindcss.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
---

@tailwind base;
@tailwind components;
@tailwind utilities;

7 changes: 7 additions & 0 deletions index.html
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>
Loading

0 comments on commit 50b861c

Please sign in to comment.