web/_config.yml

154 lines
4.0 KiB
YAML
Raw Normal View History

2021-01-25 01:20:51 +03:00
# The Site Configuration
2021-01-31 21:56:13 +03:00
theme: jekyll-theme-chirpy
2021-07-20 20:01:09 +03:00
lang: en
2024-04-13 02:00:37 +03:00
timezone: Europe/Istanbul
2024-04-13 12:34:20 +03:00
# See for Jekyll SEO Tag Settings: https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md
2021-07-20 20:01:09 +03:00
2024-04-13 12:34:20 +03:00
title: Aliberk Sandıı
tagline: Personal Website & Blog
description: >-
2024-04-13 02:00:37 +03:00
Personal Website & Blog of Aliberk Sandıı
2019-09-30 15:38:41 +03:00
2024-04-13 02:00:37 +03:00
url: "https://asandikci.com"
2024-04-13 12:54:20 +03:00
baseurl: "/"
2019-09-30 15:38:41 +03:00
2024-04-13 12:34:20 +03:00
forgejo:
username: asandikci
domain: 'git.aliberksandikci.com.tr'
2019-09-30 15:38:41 +03:00
social:
2024-04-13 02:00:37 +03:00
name: Aliberk Sandıı
2024-04-13 12:34:20 +03:00
email: contact@aliberksandikci.com.tr
2019-09-30 15:38:41 +03:00
links:
2024-04-13 12:34:20 +03:00
- https://git.aliberksandikci.com.tr/asandikci
- https://mastodon.social/@asandikci
- https://www.linkedin.com/in/asandikci
2024-04-13 12:34:20 +03:00
theme_mode: # [light | dark]
2021-01-09 17:31:43 +03:00
# the avatar on sidebar, support local or CORS resources
2024-04-13 13:47:29 +03:00
avatar: assets/img/pp.png
# The URL of the site-wide social preview image used in SEO `og:image` meta tag.
# It can be overridden by a customized `page.image` in front matter.
social_preview_image: # string, local or CORS resources
# boolean type, the global switch for TOC in posts.
2019-09-30 15:38:41 +03:00
toc: true
2021-12-10 16:12:52 +03:00
comments:
active: # The global switch for posts comments, e.g., 'disqus'. Keep it empty means disable
2021-12-11 12:24:08 +03:00
# The active options are as follows:
2021-12-10 16:12:52 +03:00
disqus:
shortname: # fill with the Disqus shortname. https://help.disqus.com/en/articles/1717111-what-s-a-shortname
2021-12-11 12:24:08 +03:00
# utterances settings https://utteranc.es/
utterances:
repo: # <gh-username>/<repo>
issue_term: # < url | pathname | title | ...>
# Giscus options https://giscus.app
giscus:
repo: # <gh-username>/<repo>
repo_id:
category:
category_id:
mapping: # optional, default to 'pathname'
input_position: # optional, default to 'bottom'
lang: # optional, default to the value of `site.lang`
reactions_enabled: # optional, default to the value of `1`
2019-09-30 15:38:41 +03:00
# Self-hosted static assets, optional https://github.com/cotes2020/chirpy-static-assets
assets:
self_host:
enabled: # boolean, keep empty means false
# specify the Jekyll environment, empty means both
# only works if `assets.self_host.enabled` is 'true'
env: # [development | production]
pwa:
enabled: true # the option for PWA feature (installable)
cache:
enabled: true # the option for PWA offline cache
# Paths defined here will be excluded from the PWA cache.
# Usually its value is the `baseurl` of another website that
# shares the same domain name as the current website.
deny_paths:
# - "/example" # URLs match `<SITE_URL>/example/*` will not be cached by the PWA
paginate: 10
# ------------ The following options are not recommended to be modified ------------------
2019-09-30 15:38:41 +03:00
kramdown:
syntax_highlighter: rouge
syntax_highlighter_opts: # Rouge Options https://github.com/jneen/rouge#full-options
2020-12-07 20:49:56 +03:00
css_class: highlight
2019-09-30 15:38:41 +03:00
# default_lang: console
span:
line_numbers: false
block:
line_numbers: true
start_line: 1
2020-11-21 23:24:09 +03:00
collections:
tabs:
output: true
sort_by: order
2019-09-30 15:38:41 +03:00
defaults:
2022-02-02 20:31:53 +03:00
- scope:
path: "" # An empty string here means all files in the project
2019-09-30 15:38:41 +03:00
type: posts
values:
layout: post
comments: true # Enable comments in posts.
toc: true # Display TOC column in posts.
2021-04-19 23:34:11 +03:00
# DO NOT modify the following parameter unless you are confident enough
# to update the code of all other post links in this project.
permalink: /posts/:title/
2022-02-02 20:31:53 +03:00
- scope:
2019-09-30 15:38:41 +03:00
path: _drafts
values:
comments: false
2022-02-02 20:31:53 +03:00
- scope:
path: ""
type: tabs # see `site.collections`
2019-09-30 15:38:41 +03:00
values:
layout: page
permalink: /:title/
2022-02-02 20:31:53 +03:00
- scope:
path: assets/js/dist
values:
swcache: true
2020-01-08 20:45:01 +03:00
2019-09-30 15:38:41 +03:00
sass:
style: compressed
compress_html:
clippings: all
2020-10-12 09:18:02 +03:00
comments: all
endings: all
2019-09-30 15:38:41 +03:00
profile: false
blanklines: false
ignore:
2020-12-19 18:01:46 +03:00
envs: [development]
2019-09-30 15:38:41 +03:00
exclude:
- "*.gem"
- "*.gemspec"
- docs
2020-01-01 20:21:43 +03:00
- tools
2020-04-08 17:45:25 +03:00
- README.md
2020-06-26 12:33:43 +03:00
- LICENSE
- rollup.config.js
2021-11-28 18:43:40 +03:00
- package*.json
2019-09-30 15:38:41 +03:00
2020-11-26 18:52:59 +03:00
jekyll-archives:
enabled: [categories, tags]
layouts:
category: category
tag: tag
permalinks:
2020-12-07 20:49:56 +03:00
tag: /tags/:name/
category: /categories/:name/