Swipe left or right to navigate to next or previous post
Github Pages are freely hosted public web pages hosted by GitHub. The GitHub pages is hosted under custom github.io domain or on a custom domain name of pur choices. Github pages uses jekyll engine behind the scenes.
When the changes are pushed to the GitHub main branch, GitHub pages automatically generate the static site.
gem install bundler jekyll jekyll new my-awesome-site cd my-awesome-site bundle exec jekyll serve
Now you can browse the site in the browser by visiting:
http://localhost:4000
1. Add the following code to Gemfile by:
gem 'jekyll-seo-tag'
2. Add the following to _config.yml file:
plugins: [jekyll-seo-tag]or
plugins: - jekyll-seo-tag
3. Use the following code right before </head> in site's template
{% seo %}