Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update _config.yml #67

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
109 changes: 108 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1 +1,108 @@
theme: jekyll-theme-minimal
theme: jekyll-theme-minimal

# Site settings
title: Your Site Title
description: >-
This is an example site built with Jekyll.
It serves as a demonstration of how to add a comprehensive configuration.
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://your-site-domain.com" # the base hostname & protocol for your site
timezone: "Asia/Kolkata"

# Author
author:
name: Your Name
email: [email protected]
url: "https://your-site-domain.com/about/"

# Social links
social_links:
twitter: your_twitter_handle
github: your_github_handle
linkedin: your_linkedin_handle
facebook: your_facebook_handle

# Navigation
nav:
- name: "Home"
url: "/"
- name: "About"
url: "/about/"
- name: "Blog"
url: "/blog/"
- name: "Contact"
url: "/contact/"

# Markdown settings
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
toc_levels: 1..6
entity_output: as_char
smart_quotes: lsquo,rsquo,ldquo,rdquo
enable_coderay: false

# Permalinks
permalink: /:categories/:year/:month/:day/:title/

# Plugins
plugins:
- jekyll-feed
- jekyll-seo-tag
- jekyll-sitemap
- jekyll-paginate
- jekyll-coffeescript
- jekyll-gist

# Pagination settings
paginate: 5
paginate_path: "/blog/page:num/"

# Include/Exclude files and directories
exclude:
- Gemfile
- Gemfile.lock
- node_modules
- vendor/bundle/

# Default settings for collections
defaults:
- scope:
path: ""
type: "posts"
values:
layout: "post"
author: "Your Name"

# GitHub Pages settings
github:
is_project_page: false

# SEO settings
seo:
title_separator: "-"
description_limit: 160
twitter:
card: "summary"
site: "@your_twitter_handle"
creator: "@your_twitter_handle"
open_graph:
type: "website"
title: "Your Site Title"
description: "This is an example site built with Jekyll."

# RSS feed settings
feed:
path: "feed.xml"

# Sitemap settings
sitemap:
changefreq: "daily"
priority: 0.8

# Build settings
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
keep_files:
- "CNAME"
- ".well-known"