├── .gitignore ├── Gemfile ├── README.md ├── _config.yml ├── _layouts └── base.html ├── _posts ├── 2019-04-10-jay.md ├── 2019-10-04-Atishay.md ├── 2019-10-04-Siddhant.md ├── 2019-10-05-KrishnaGaur.md └── 2019-10-05-OmKumarThakur.md ├── css └── style.css ├── index.html └── post └── keshavagarwal /.gitignore: -------------------------------------------------------------------------------- 1 | /_site/ 2 | Gemfile.lock -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' do 2 | # Gems here 3 | gem 'jekyll' 4 | gem 'kramdown' 5 | gem 'rouge' 6 | gem 'github-pages', group: :jekyll_plugins 7 | end -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Introduction to Git and Hacktoberfest Study Jam 2 | 3 | In this workshop, the students learnt what is Git, how to use it to collaborate with others online. They also learnt about GitHub. The task given to participants now is to create a post for themselves to appear on https://iiitv.github.io/introduction-to-git-19 4 | 5 | ## How to contribute to this project? 6 | #### Fork this repository and clone it 7 | You can fork this repository by clicking the fork button and clone your fork. 8 | #### Create your post 9 | Create a post for yourself in the `_posts` directory. 10 | 11 | The name of the file should be in the format `YYYY-MM-DD-.md`. The content of the file should be as follows- 12 | ```md 13 | --- 14 | name: "Your Name" 15 | github_id: "Your GitHub Id" 16 | --- 17 | Some description about yourself in 1-2 lines ( please keep it short ). 18 | ``` 19 | 20 | Draft a pull request for the same. 21 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/introduction-to-git-19/3a5af0cb7e320d345edd26ded7fcd7ba54eec527/_config.yml -------------------------------------------------------------------------------- /_layouts/base.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Introduction to Git! 5 | 6 | 7 | 8 | 9 |
{{ content }}
10 | 11 | -------------------------------------------------------------------------------- /_posts/2019-04-10-jay.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Jay Mistry" 3 | github_id: "rossoskull" 4 | --- 5 | 6 | Welcome to "Introduction to Git and Hacktoberfest Study Jam!". Write something about yourself here :) 7 | -------------------------------------------------------------------------------- /_posts/2019-10-04-Atishay.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Atishay Jain" 3 | github_id: "Atishay990" 4 | --- 5 | 6 | Welcome to "Introduction to Git and Hacktoberfest . 7 | I am quite excited to start my open source journey. 8 | Thankyou IIITV Coding Club , you support has been incredible. 9 | -------------------------------------------------------------------------------- /_posts/2019-10-04-Siddhant.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Siddhant Singh" 3 | github_id: "siddhantsingh186" 4 | --- 5 | 6 | 7 | A newbie to the world of programming,certainly not the only one.Mathhead,love singing,gamer and a dreamer.CP coder,quiet yet outspoken,sensitive yet tough. 8 | -------------------------------------------------------------------------------- /_posts/2019-10-05-KrishnaGaur.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Krishna Gaur" 3 | github_id: "gaurKrishna" 4 | --- 5 | I enjoy coding and exploring the world around and in leasuire time I enjoy outdoor games, soft music and banter chat with friends. 6 | -------------------------------------------------------------------------------- /_posts/2019-10-05-OmKumarThakur.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Om Kumar Thakur" 3 | github_id: "omkumarbhu123" 4 | --- 5 | After, exploring 2 months of this college life , what i am going to learn is github and contribute to open source. 6 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap'); 2 | 3 | body { 4 | font-family: 'Montserrat'; 5 | } 6 | 7 | .container { 8 | width: 80%; 9 | margin: 0 auto; 10 | display: flex; 11 | flex-flow: column; 12 | justify-content: center; 13 | } 14 | 15 | .title { 16 | text-align: center; 17 | } 18 | 19 | .attendees { 20 | /* text-align: center; */ 21 | font-size: 32px; 22 | display: inline-block; 23 | padding: 10px 20px; 24 | border: 2px solid #444; 25 | margin: 0 auto; 26 | border-radius: 50px; 27 | margin-bottom: 30px; 28 | } 29 | 30 | .attendees-list { 31 | display: grid; 32 | grid-template-columns: repeat(4, 1fr); 33 | grid-gap: 20px; 34 | } 35 | 36 | .attendee-card { 37 | display: flex; 38 | flex-flow: column; 39 | align-items: center; 40 | border: 2px solid #aaa; 41 | transition: .2s; 42 | border-radius: 15px; 43 | padding: 10px; 44 | text-decoration: none; 45 | color: #333; 46 | } 47 | 48 | .attendee-card:hover { 49 | border: 2px solid #444; 50 | } 51 | 52 | .attendee-card img { 53 | width: 150px; 54 | border-radius: 100px; 55 | } 56 | 57 | .attendee-card h1 { 58 | margin: 20px 0; 59 | text-align: center; 60 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Introduction to Git & Hacktoberfest Study Jam" 3 | permalink: "/" 4 | layout: base 5 | --- 6 | 7 | 8 |

Introduction to Git & Hacktoberfest Study Jam

9 | 10 |
11 | Attendees of the workshop 12 |
13 | 14 |
15 | {% for post in site.posts %} 16 | 17 | {{ post.name }}'s profile image' 18 |

{{ post.name }}

19 | {{ post.content }} 20 |
21 | {% endfor %} 22 |
-------------------------------------------------------------------------------- /post/keshavagarwal: -------------------------------------------------------------------------------- 1 | -- 2 | name :"keshav agarwal" 3 | github_id :"kesh80" 4 | -- 5 | 6 | "I AM A CSE 1ST YEAR STUDENT IN INDIAN INSTITUTE OF INFORMATION TECHNOLOGY VADODARA" 7 | --------------------------------------------------------------------------------