File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ source "https://rubygems.org"
2+
3+ gem "jekyll"
4+ gem "jekyll-feed"
5+ gem "jekyll-seo-tag"
Original file line number Diff line number Diff line change 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/
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments