Skip to content

Commit

Permalink
Create _config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmad88me authored May 13, 2024
1 parent 1e2aa79 commit 2ca2d83
Showing 1 changed file with 110 additions and 0 deletions.
110 changes: 110 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
title: My site
subtitle: Just some words
author: George Washington
description: >
Here is my website. This description will appear in the meta
data on the site and in the feed.xml site description.
# git edit capabilities
baseurl: /JasonGaylord.com
remote_theme: jasongaylord/SpaacedOut
git:
# host: https://github.com/
repository: jasongaylord/SpaacedOut
branch: gh-pages

# pagination and permalink
show_excerpts: true
paginate: 5
page_group_size: 5
paginate_path: "/blog/page/:num"
permalink: /blog/:year/:month/:day/:title

# content expansion
content:
head-s: false
# header-s: false
# Since GitHub Pages targets Jekyll 3.8 and not Jekyll 4, we are limited on loading includes in
# dynamically. Hopefully they change it in the future. So, the commented out blocks below are
# for future usage. Since they'll never be true, the Jekyll processor will skip these. If
# and when these are allowed, I'll post in the Theme README how to safely "upgrade."
# head-suffix: head-suffix.html
# header-suffix: header-suffix.html

# contact
contact:
# avatar-image: /assets/images/avatar.png
# email: email@gmail.com # Uncomment if you want feedback via email (it will expose your email)
# url: https://domain.com/contact.html # Uncomment if you want to provide a contact form

# social links (uncomment the links you'd like to include and)
social:
# facebook: jekyll
# github: jekyll
# instagram: jekyll
# linkedin: jekyll
# mastodonUser: jekyll
# mastodonServer: tech.social
# pinterest: jekyll
# stackoverflow: "11111"
# twitter: jekyllrb
# youtube: jekyll

google:
# analytics: UA-NNNNNNNN-N
# adsense: ca-pub-NNNNNNNNNNNNNNNN

rss: rss
# The site generates a feed at /feed.xml. Uncomment below to override
# feed:
# path: /myfeed.xml

# comments
comments:
# enabled: false
# show_count: false
# disqus_shortname: jekyll

# front matter
defaults:
-
scope:
path: "_posts"
type: "posts"
values:
layout: post
comments: true
-
scope:
path: "pages"
type: "pages"
values:
layout: page
comments: false
-
scope:
path: "assets/pages"
type: "pages"
values:
layout: page
comments: false

#Kramdown Configuration
markdown: kramdown
highlighter: rouge
kramdown:
input: GFM
syntax_highlighter_opts:
span:
line_numbers: false
block:
line_numbers: true
start_line: 1

plugins:
- jekyll-avatar
- jekyll-feed
- jekyll-paginate
- jekyll-remote-theme
- jekyll-seo-tag
- jekyll-sitemap

0 comments on commit 2ca2d83

Please sign in to comment.