-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteams.js
60 lines (58 loc) · 1.99 KB
/
teams.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//************************Events Coordinators************************
var male="assets/imgs/male.png";
var female="assets/imgs/female.png"
$(document).ready(function() {
var cardData = [
{
imgSrc: female,
name: "Kiruba N",
year:'AP',
department: "AI&DS",
Role: "Overall staff Co-ordinator",
phone: "8838031163",
whatsapp: "8838031163"
},
{
imgSrc: male,
name: "Hari Vignesh",
year:'3rd Year',
department: "AI&DS",
Role: "Overall student Co-ordinator",
phone: "6383432687",
whatsapp: "6383432687"
},
{
imgSrc: male,
name: "Rishikanth",
year:'3rd Year',
department: "CSE",
Role: "Overall student Co-ordinator",
phone: "8438633936",
whatsapp: "8438633936"
}
];
function addCards() {
var htmlContent = '';
cardData.forEach(function(coordinators) {
//HTML content
htmlContent += `
<div class="profile-card">
<div class="img">
<img src="${coordinators.imgSrc}">
</div>
<div class="caption">
<h6>${coordinators.name}</h6>
<p>${coordinators.year} / ${coordinators.department}</p>
<p>${coordinators.Role}</p>
<div class="social-links">
<a href="tel:+91 ${coordinators.phone}" target="_blank"><i class="fa-solid fa-phone"></i></a>
<a href="https://wa.me/${coordinators.whatsapp}" target="_blank"><i class="fa-brands fa-whatsapp"></i></a>
</div>
</div>
</div>
`;
});
$('#contentContainer').html(htmlContent);
}
addCards();
});