Skip to content

Update _config.yml #67

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

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
Update _config.yml
Explanation 
Site settings: General site information and base URL configuration.

Author: Information about the author.

Social links: Links to social media profiles.

Navigation: Main navigation menu items.

Markdown settings: Configuration for Markdown processing.

Permalinks: URL structure for the site.

Plugins: List of Jekyll plugins for added functionality.

Pagination settings: Configuration for paginating blog posts.

Include/Exclude files: Files or directories to include or exclude from the build.

Default settings: Default values for collections.

GitHub Pages settings: Specific settings for GitHub Pages.

SEO settings: Configuration for SEO-related tags.

RSS feed settings: Path for the RSS feed.

Sitemap settings: Configuration for the sitemap.

Build settings: Additional build configurations.

This configuration maintains the theme: jekyll-theme-minimal line and expands the _config.yml file with valuable settings, providing a significant contribution to the repository. Feel free to further customize the content based on the project needs.
  • Loading branch information
adityakrmishra authored Jan 5, 2025
commit 24fe5e1e267d788d3688a97fb61967d2b43e7c8d
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: your-email@example.com
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"