Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: ISSUE_TEMPLATE
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Actual Behaviour**

<!--Please state here what is currently happening.-->

**Expected Behaviour**

<!--State here what the feature should enable the user to do.-->

**Steps to reproduce it**

<!--Add steps to reproduce bugs or add information on the place where the feature should be implemented. Add links to a sample deployment or code.-->

**Screenshots of the issue**

<!--Where-ever possible add a screenshot of the issue.-->

**Would you like to work on the issue?**

<!--Let us know if this issue should be assigned to you or tell us who you think could help to solve this issue.-->
5 changes: 5 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Fixes #[Add issue number here. If you do not solve the issue entirely, please change the message e.g. "First steps for issues #IssueNumber]

Changes: [Add here what changes were made in this issue and if possible provide links.]

Screenshots for the change:
51 changes: 43 additions & 8 deletions assets/data/team.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,25 +65,60 @@
"linkedIn_link": "aryan-vats"
},
{
"name": "Arpit Upadhyay",
"role": "contributor",
"profile_pic": "arpit.jpg",
"email": "arpit.au.upadhyay@gmail.com",
"github_link": "https://github.com/ausome197",
"linkedIn_link": ""
},{
"name": "Arpit Upadhyay",
"role": "contributor",
"profile_pic": "arpit.jpg",
"email": "arpit.au.upadhyay@gmail.com",
"github_link": "https://github.com/ausome197",
"linkedIn_link": ""
},
{
"name": "Hayat Tamboli",
"role": "contributor",
"profile_pic": "hayat.jpg",
"email": "hayat.tamboli@gmail.com",
"github_link": "hayat-tamboli",
"linkedIn_link": "hayat-tamboli"
},{
},
{
"name": "Sourav Paul",
"role": "contributor",
"profile_pic": "sourav.jpg",
"email": "souravpaul@protonmail.com",
"github_link": "souravpaul8",
"linkedIn_link": "souravpaul8"
},
{
"name": "Vaishnav Srinidhi",
"role": "contributor",
"profile_pic": "Vaishnav.jpg",
"email": "vaishnavsrinidhi@gmail.com",
"github_link": "https://github.com/V41SH",
"linkedIn_link": "www.linkedin.com/in/vaishnav-srinidhi"
},
{
"name": "Versha Mishra",
"role": "contributor",
"profile_pic": "versha_mishra.jpg",
"email": "vershamishra13@gmail.com",
"github_link": "VershaCoder",
"linkedIn_link": "versha-mishra-4b4376125"
},
{
"name": "Dhairya Ostwal",
"role": "contributor",
"profile_pic": "dhairya.jpg",
"email": "dhairyacontact@gmail.com",
"github_link": "dhairyaostwal",
"linkedIn_link": "www.linkedin.com/in/dhairyaostwal/"

},
{
"name":"Rajat Mehta",
"role":"contributor",
"profile_pic":"rajat_mehta.jpg",
"email":"imrajatmehta@gmai.com",
"github_link":"imrajatmehta",
"linkedIn_link":"rajat-mehta-4103a7160/"
}
]
Binary file added assets/images/Vaishnav.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/aryan.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/dhairya.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/hayat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/karan.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/tanay.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/versha_mishra.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/vinay.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/vivek.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/yashkumarverma.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/css/team.css">
<title>Our Team</title>
<style>
.image_hover{
transition: transform .2s;
}
.image_hover:hover{
transform: scale(1.2);
}
</style>

</head>

<body>
Expand Down Expand Up @@ -38,7 +47,7 @@ <h1 class="display-4 ">Our Team</h1>
url: "./assets/data/team.json",
success: (data) => {
data.forEach(item => {
element.append(`<div class="d-flex flex-column justify-content-center align-items-center"><img width="150" height="150" src="./assets/images/${item.profile_pic}" /> <p>${item.name}</p> </div>`)
element.append(`<div class=" image_hover d-flex flex-column justify-content-center align-items-center"><img width="150" height="150" src="./assets/images/${item.profile_pic}" /> <p class="text-secondary">${item.name}</p > </div>`)
})
}
})
Expand Down