File tree Expand file tree Collapse file tree 2 files changed +68
-0
lines changed
Expand file tree Collapse file tree 2 files changed +68
-0
lines changed Original file line number Diff line number Diff line change 1+ # Welcome to Jekyll!
2+ #
3+ # This config file is meant for settings that affect your whole blog, values
4+ # which you are expected to set up once and rarely edit after that. If you find
5+ # yourself editing this file very often, consider using Jekyll's data files
6+ # feature for the data you need to update frequently.
7+ #
8+ # For technical reasons, this file is *NOT* reloaded automatically when you use
9+ # 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+ # Site settings
12+ # These are used to personalize your new site. If you look in the HTML files,
13+ # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+ # You can create any custom variable you would like, and they will be accessible
15+ # in the templates via {{ site.myvariable }}.
16+ lang : en-US
17+ title : My Awesome Site
18+ email :
19+ description :
20+ baseurl : # the subpath of your site, e.g. /blog
21+ url : # the base hostname & protocol for your site, e.g. http://example.com
22+ author :
23+ name :
24+ twitter :
25+ picture :
26+ twitter_username :
27+ github_username :
28+ logo :
29+
30+ # Build settings
31+ markdown : kramdown
32+ theme : jekyll-theme-basically-basic
33+ gems :
34+ - jekyll-feed
35+ - jekyll-seo-tag
36+ - jekyll-sitemap
37+ - jekyll-paginate
38+ feed :
39+ path : atom.xml
40+
41+ # Pagination - https://jekyllrb.com/docs/pagination/
42+ paginate : 10
43+ paginate_path : /page:num/
44+
45+ # Exclude from processing.
46+ # The following items will not be processed, by default. Create a custom list
47+ # to override the default setting.
48+ # exclude:
49+ # - Gemfile
50+ # - Gemfile.lock
51+ # - node_modules
52+ # - vendor/bundle/
53+ # - vendor/cache/
54+ # - vendor/gems/
55+ # - vendor/ruby/
56+
57+ # Front Matter Defaults
58+ defaults :
59+ # _posts
60+ - scope :
61+ path : " _posts"
62+ type : posts
63+ values :
64+ layout : post
65+ read_time : true
Original file line number Diff line number Diff line change 1+ ---
2+ layout : home
3+ ---
You can’t perform that action at this time.
0 commit comments