Skip to content

Commit 402ecec

Browse files
Merge remote-tracking branch 'origin/master' into tags
2 parents ccbe57b + c8b1f4d commit 402ecec

20 files changed

+1242
-68
lines changed

.github/CONTRIBUTING.md

+20-6
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,33 @@ git checkout -b branch-name
5555

5656
- Create a new file for your article/blog in the `_posts` folder. The format of your file should be like `yyyy-mm-dd-title-of-article.md`, following this naming convention is very important as jekyll would not be able to read your post otherwise.
5757

58-
- In your article/blog file, add the following jekyll-liquid header at the beginning of your file, which is required, without it jekyll would not be able to read your post.
58+
- If you're a frequent blogger, then add your profile in `_data/authors.yml` file and if you don't want to do that, add the following fields to the YAML frontmatter of the post.
59+
60+
```yaml
61+
---
62+
# Remove the ones which you don't want to keep.
63+
author_image_url: "https://example.com/author"
64+
author_bio: "Author Bio"
65+
author_linkedin_url: "https://linkedin.com/in/id"
66+
author_github_url: "https://github.com/id"
67+
author_facebook_url: "https://facebook.com/id"
68+
author_instagram_url: "https://instagram.com/id"
69+
author_twitter_url: "https://twitter.com/id"
70+
---
71+
```
72+
73+
- In your article/blog file, add the following YAML frontmatter in the beginning of your file, which is required, without it jekyll would not be able to read your post.
5974

6075
```bash
6176
---
6277
layout: post
63-
author: "<Your Name>"
64-
author_url: <Your github profile url>
78+
author: "<Your Name/ Github Username>" # If you've added your profile in authors.yml then only use github username
79+
author_github_id: <Your github username> # Remove this if you've already added your profile in authors.yml
80+
6581
title: "<Your article title>"
6682
subtitle: "<Your article subtitle (optional)>"
6783
bg_url: "<A relevant BG image url>"
68-
tags: [home]
69-
home_title: "<Simplified Title for homepage>"
70-
home_subtitle: "<Simplified subtitle for hompage>"
84+
tags: [<your custom tags>]
7185
---
7286
```
7387

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
```bash
1212
gem install jekyll bundler
1313
```
14+
If you're on macOS, you may want to add `-n /usr/local/bin` to specify executables' directory. See [this](https://jekyllrb.com/docs/troubleshooting/#jekyll--macos) for explanation.
1415

1516
3. Fork this repo and clone your forked repo, by running the `clone` command:
1617

_data/authors.yml

+108-8
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,125 @@
1-
Aashish Kumar:
1+
# github_id:
2+
# name : "Your Name"
3+
# bio : "Your Bio"
4+
# avatar : "Paste your DP link here"
5+
# links:
6+
# - label: "Email"
7+
# icon: "fas fa-fw fa-envelope-square"
8+
# url: "mailto:your-email@your-email.com"
9+
# - label: "Website"
10+
# icon: "fas fa-fw fa-link"
11+
# url: "https://www.yourwebsite.com"
12+
# - label: "GitHub"
13+
# icon: "fab fa-fw fa-github"
14+
# url: "https://github.com/yourgithub-id"
15+
# - label: "Linkedin"
16+
# icon: "fab fa-linkedin"
17+
# url: "https://www.linkedin.com/in/your-linkedin-username/"
18+
# - label: "Facebook"
19+
# icon: "fab fa-fw fa-facebook"
20+
# url: "https://facebook.com/your-facebook-username"
21+
# - label: "Instagram"
22+
# icon: "fab fa-fw fa-instagram"
23+
# url: "https://instagram.com/your-instagram-username"
24+
25+
aashish-ak:
226
name : "Aashish Kumar"
327
bio : "Core Team Member, Programming Club, IIT Mandi"
428
avatar : "https://avatars2.githubusercontent.com/u/21988675?s=400&v=4"
529
links:
630
- label: "Email"
7-
icon: "fas fa-fw fa-envelope-square"
31+
icon: "fas fa-envelope-square"
832
url: "mailto:kumaraashish118@gmail.com"
9-
- label: "Website"
10-
icon: "fas fa-fw fa-link"
11-
url: "https://aashish-ak.github.io"
33+
- label: "GitHub"
34+
icon: "fab fa-github"
35+
url: "https://github.com/aashish-ak"
1236
- label: "Linkedin"
1337
icon: "fab fa-linkedin"
14-
url: "https://www.linkedin.com/in/aashish-kumar-159715129/"
38+
url: "https://www.linkedin.com/in/aashish-ak"
39+
- label: "Instagram"
40+
icon: "fab fa-instagram"
41+
url: "https://instagram.com/main.whi.hoon"
42+
1543
DevBae:
1644
name : "DevBae"
1745
bio : "Admin, DevBae"
18-
avatar : "/assets/images/devbae_dp.png"
46+
avatar : "https://avatars2.githubusercontent.com/u/64611797"
1947
links:
2048
- label: "Email"
21-
icon: "fas fa-fw fa-envelope-square"
49+
icon: "fas fa-envelope-square"
2250
url: "mailto:contact@devbae.tech"
2351
- label: "Website"
2452
icon: "fas fa-fw fa-link"
2553
url: "https://devbae.tech"
54+
55+
aroralakshya:
56+
name : "Lakshya Arora"
57+
bio : "Member, DevBae"
58+
avatar : "https://avatars2.githubusercontent.com/u/20344314"
59+
links:
60+
- label: "Email"
61+
icon: "fas fa-envelope-square"
62+
url: "mailto:arora.lakshya123@gmail.com"
63+
- label: "GitHub"
64+
icon: "fab fa-fw fa-github"
65+
url: "https://github.com/aroralakshya"
66+
- label: "Linkedin"
67+
icon: "fab fa-linkedin"
68+
url: "https://www.linkedin.com/in/lakshya-arora-8122b2137/"
69+
- label: "Instagram"
70+
icon: "fab fa-instagram"
71+
url: "https://instagram.com/lakshya_arora__"
72+
73+
the-utkarshjain:
74+
name : "Utkarsh Jain"
75+
bio : "Core Team Member, DevBae"
76+
avatar : "https://avatars3.githubusercontent.com/u/45516528?s=460v=4"
77+
links:
78+
- label: "Email"
79+
icon: "fas fa-envelope-square"
80+
url: "mailto:utkarsh.j.99@gmail.com"
81+
- label: "GitHub"
82+
icon: "fab fa-fw fa-github"
83+
url: "https://github.com/the-utkarshjain"
84+
- label: "Linkedin"
85+
icon: "fab fa-linkedin"
86+
url: "https://www.linkedin.com/in/iamutkarshjain/"
87+
- label: "Facebook"
88+
icon: "fab fa-facebook"
89+
url: "https://facebook.com/utkarsh.jain.376"
90+
- label: "Instagram"
91+
icon: "fab fa-instagram"
92+
url: "https://instagram.com/the_utkarshjain"
93+
94+
palakgupta889:
95+
name : "Palak Gupta"
96+
bio : "Connect with me on LinkedIn!"
97+
avatar : "https://avatars1.githubusercontent.com/u/32836916"
98+
links:
99+
- label: "Email"
100+
icon: "fas fa-envelope-square"
101+
url: "mailto:palakgupta889@gmail.com"
102+
- label: "GitHub"
103+
icon: "fab fa-github"
104+
url: "https://github.com/palakgupta889"
105+
- label: "Linkedin"
106+
icon: "fab fa-linkedin"
107+
url: "https://www.linkedin.com/in/palakgupta889"
108+
109+
pranshukharkwal:
110+
name : "Pranshu Kharkwal"
111+
bio : "Undergrad student at IIT Mandi, Web & App developer, Ghostwriter, exploring open source, one commit at a time."
112+
avatar : "https://avatars0.githubusercontent.com/u/21126219?s=460&v=4"
113+
links:
114+
- label: "Email"
115+
icon: "fas fa-envelope-square"
116+
url: "mailto:pranshukharkwal08@gmail.com"
117+
- label: "GitHub"
118+
icon: "fab fa-github"
119+
url: "https://github.com/pranshukharkwal"
120+
- label: "Facebook"
121+
icon: "fab fa-facebook"
122+
url: "https://facebook.com/kharkwalpranshu"
123+
- label: "Instagram"
124+
icon: "fab fa-instagram"
125+
url: "https://www.instagram.com/hellopranshu"

0 commit comments

Comments
 (0)