Skip to content

Commit 49febaf

Browse files
committed
chore: yml
1 parent 9146457 commit 49febaf

File tree

2 files changed

+123
-0
lines changed

2 files changed

+123
-0
lines changed

_config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ description:
55
'Crack your next Big-4 companies (Facebook, Microsoft, Amazon & Google) coding interview',
66
]
77
google_analytics: ['UA-128916623-7']
8+
9+
10+
11+
12+

minimal-config.yml

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
2+
3+
4+
5+
6+
# Welcome to Jekyll!
7+
#
8+
# This config file is meant for settings that affect your whole blog, values
9+
# which you are expected to set up once and rarely edit after that. If you find
10+
# yourself editing this file very often, consider using Jekyll's data files
11+
# feature for the data you need to update frequently.
12+
#
13+
# For technical reasons, this file is *NOT* reloaded automatically when you use
14+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
15+
16+
# Site settings
17+
# These are used to personalize your new site. If you look in the HTML files,
18+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
19+
# You can create any custom variable you would like, and they will be accessible
20+
# in the templates via {{ site.myvariable }}.
21+
title: RupeshTiwari
22+
23+
description: >- # this means to ignore newlines until "baseurl:"
24+
Crack your next Big-4 companies (Facebook, Microsoft, Amazon & Google) coding interview
25+
twitter_username: username
26+
github_username: username
27+
minimal_mistakes_skin: default
28+
search: true
29+
30+
# Build settings
31+
markdown: kramdown
32+
remote_theme: mmistakes/minimal-mistakes
33+
# Outputting
34+
permalink: /:categories/:title/
35+
paginate: 5 # amount of posts to show
36+
paginate_path: /page:num/
37+
timezone: # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
38+
39+
include:
40+
- _pages
41+
42+
# Exclude from processing.
43+
# The following items will not be processed, by default. Create a custom list
44+
# to override the default setting.
45+
# exclude:
46+
# - Gemfile
47+
# - Gemfile.lock
48+
# - node_modules
49+
# - vendor/bundle/
50+
# - vendor/cache/
51+
# - vendor/gems/
52+
# - vendor/ruby/
53+
54+
# Plugins (previously gems:)
55+
plugins:
56+
- jekyll-paginate
57+
- jekyll-sitemap
58+
- jekyll-gist
59+
- jekyll-feed
60+
- jemoji
61+
- jekyll-include-cache
62+
63+
author:
64+
name : "First Lastname"
65+
avatar : "/assets/images/bio-photo.jpg"
66+
bio : "My awesome biography constrained to a sentence or two goes here."
67+
links:
68+
- label: "Website"
69+
icon: "fas fa-fw fa-link"
70+
url: "https://"
71+
- label: "Twitter"
72+
icon: "fab fa-fw fa-twitter-square"
73+
url: "https://twitter.com/"
74+
- label: "GitHub"
75+
icon: "fab fa-fw fa-github"
76+
url: "https://github.com/"
77+
- label: "Instagram"
78+
icon: "fab fa-fw fa-instagram"
79+
url: "https://instagram.com/"
80+
81+
footer:
82+
links:
83+
- label: "Twitter"
84+
icon: "fab fa-fw fa-twitter-square"
85+
url: "https://twitter.com/"
86+
- label: "GitHub"
87+
icon: "fab fa-fw fa-github"
88+
url: "https://github.com/"
89+
- label: "Instagram"
90+
icon: "fab fa-fw fa-instagram"
91+
url: "https://instagram.com/"
92+
93+
defaults:
94+
# _posts
95+
- scope:
96+
path: ""
97+
type: posts
98+
values:
99+
layout: single
100+
author_profile: true
101+
read_time: true
102+
comments: true
103+
share: true
104+
related: true
105+
# _pages
106+
- scope:
107+
path: "_pages"
108+
type: pages
109+
values:
110+
layout: single
111+
author_profile: true
112+
113+
category_archive:
114+
type: liquid
115+
path: /categories/
116+
tag_archive:
117+
type: liquid
118+
path: /tags/

0 commit comments

Comments
 (0)