This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (74 loc) · 2.92 KB
/
index.html
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
layout: home
---
<body>
<div class='content' style="text-align: justify;">
CP 214 @IISc Bangalore
<h1 id="main-title" style="font-weight: 800; font-size: 3em;">{{site.title}}</h1>
<br>
<h1 id="Course Description">Course Description</h1>
{% for para in site.data.home.course.content %}
{{para.p}}
{% endfor %}
<br><hr><br>
<h1 class="standard-title" id="Instructors">Instructors</h1>
<br>
<ul class=lists>
<li>
<div class="person col-md-12 col-sm-24 col-xs-24" id="profs">
{% for item in site.data.home.instructors.instructor %}
<div>
<div class="person-thumbnail" style="margin-left:1vw">
<div class="person-avatar">
<span class="person-image" style="background: url({{item.img}}); background-size:cover;"></span>
</div>
</div>
<div class="person-text">
<h2 class="person-name"><a href="{{item.github}}" target="_blank"> {{item.name}} </a></h2>
<p><span>{{item.email}}</span></p>
<p>Consultation Hours: {{item.consultation}} </p>
</div>
</div>
{% endfor %}
</div>
</li>
</ul>
<br><br>
<h1 class="standard-title" id="TAs">Teaching Assistants</h1>
<br>
<ul class=lists>
<li>
<div class="person col-md-12 col-sm-24 col-xs-24" id="profs">
{% for item in site.data.home.ta.ta %}
<div>
<div class="person-thumbnail" style="margin-left:1vw">
<div class="person-avatar">
<span class="person-image" style="background: url({{item.img}}); background-size:cover;"></span>
</div>
</div>
<div class="person-text">
<h2 class="person-name"><a href="{{item.github}}" target="_blank"> {{item.name}} </a></h2>
<p><span>{{item.email}}</span></p>
</div>
</div>
{% endfor %}
</div>
</li>
</ul>
<h1 class="standard-title" id="FAQs">FAQs</h1>
{% for item in site.data.home.FAQs.FAQ %}
<ul class= lists style="font-size:1.2em">
<li style="font-weight: 500;"> {{item.question}}</li>
<li style="color: rgb(120,120,120); margin-left: 1vw;"> - {{item.answer}}</li>
</ul>
{% endfor %}
<!--
<hr><br>
<h1 class="standard-title" > HEADING </h1>
<br>
<p>
ADD EXTRA CONENT(IF ANY) HERE AND REMOVE THE COMMENT
</p>
-->
</div>
</body>