Skip to content

Commit ca30330

Browse files
committed
Initialize Jekyll site with essential configurations and layouts
1 parent 20f20b5 commit ca30330

3 files changed

Lines changed: 46 additions & 0 deletions

File tree

Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source "https://rubygems.org"
2+
3+
gem "jekyll"
4+
gem "jekyll-feed"
5+
gem "jekyll-seo-tag"

_config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
title: Josue Zazueta Portfolio
2+
email: WebDev.Josue@gmail.com
3+
description: Web Developer Portfolio showcasing modern and responsive websites
4+
baseurl: ""
5+
url: ""
6+
7+
# Build settings
8+
markdown: kramdown
9+
plugins:
10+
- jekyll-feed
11+
- jekyll-seo-tag
12+
13+
# Exclude files
14+
exclude:
15+
- .sass-cache/
16+
- .jekyll-cache/
17+
- gemfiles/
18+
- Gemfile
19+
- Gemfile.lock
20+
- node_modules/
21+
- vendor/

_layouts/default.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>
7+
{{ site.title }}{% if page.title %} - {{ page.title }}{% endif %}
8+
</title>
9+
<script src="https://cdn.tailwindcss.com"></script>
10+
<link
11+
rel="stylesheet"
12+
href="{{ '/assets/css/styles.css' | relative_url }}"
13+
/>
14+
{% seo %}
15+
</head>
16+
<body class="bg-white font-sans">
17+
{{ content }}
18+
<script src="{{ '/assets/js/main.js' | relative_url }}"></script>
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)