Skip to content

Commit

Permalink
More updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lsegurado committed Mar 20, 2024
1 parent 86dedb6 commit 2a9544f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Gemfile.lock
_site
_site
.jekyll-cache
6 changes: 4 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
source "https://rubygems.org"

# 1. bundle install
# 2. jekyll serve
gem "jekyll", "~> 4.3.3"
# 2. bundle exec jekyll serve
gem "jekyll", "~> 3.9.5"

group :jekyll_plugins do
# https://github.com/github/pages-gem
gem "github-pages", "~> 231"
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
Expand Down
4 changes: 1 addition & 3 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
title: MichiJS
markdown: GFM
description: A Vainilla Library for Web Components
defaults:
-
scope:
path: "" # an empty string here means all files in the project
values:
layout: "default"
render_with_liquid: false # Avoids using liquid inside pages
render_with_liquid: false # Avoids using liquid inside pages - only works on jekyll > 4
4 changes: 2 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{ page.description }}">
<meta name="description" content="A Vainilla Library for Web Components">
<meta name="author" content="Lucas M. Segurado">
<meta name="theme-color" content="#000">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
Expand All @@ -20,7 +20,7 @@
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code:[email protected]&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<title>{{ page.title }}</title>
<title>MichiJS</title>
</head>

<body>
Expand Down

0 comments on commit 2a9544f

Please sign in to comment.