-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathdiode.html
115 lines (105 loc) · 5.04 KB
/
diode.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
---
layout: default
title: Diode
css : /assets/css/sig.css
---
<!-- About us -->
<div class="colorlib-intro colorlib-bg-white">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1 text-center colorlib-heading animate-box fadeInUp animated-fast">
<h2>About Us</h2>
<p>
The NITK Diode SIG is a combination of the Circuits and Systems (CAS) Society, Signal Processing Society (SPS) and the Industrial Applications Society (IAS).
The SIG consists of a team of students with a strong interest in the field of Electronics and Electrical Science, and works on conceiving and pioneering solutions to fundamental and applied problems in the fields of robotics, microcontrollers and signal processing.
</p>
<p>
IEEE NITK inaugurated the IEEE Industrial Applications Society
student chapter in the year 2019. This year we saw a steady
increase in the number of activities and events organized by the
student chapter.
</p>
<p>
For 2019-20 IAS saw one project on a battery based solar powered
inverter being completed under its wing. To enrich its members
with knowledge in the fields of power electronics, the chapter held
3 workshop sessions. Additionally, in collaboration with the
Department of Electrical and Electronics Engineering, the IAS
student chapter organized a national conference PETPES 2019.
</p>
</div>
</div>
</div>
</div>
<!-- Projects -->
<div class="colorlib-work">
<div class="container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center colorlib-heading animate-box">
<h2>Projects</h2>
</div>
</div>
</div>
<div class="container" style="margin-top: 50px;">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center animate-box">
<h2>Completed Projects</h2>
</div>
<div class="col-md-12 text-center animate-box">
<p><h4>Projects completed during Academic Years 2019 to 2023 can be found at</h4></p>
<p><a href="https://ieee.nitk.ac.in/virtual-expo/diode/" class="btn btn-primary btn-outline">Diode Virtual Expo</a></p>
</div>
</div>
</div>
<div class="container" style="margin-top: 50px;">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center animate-box">
<h2>Past Projects</h2>
</div>
</div>
<div class="row animate-box">
<ul class="nav-pills-custom">
{% assign count = 0 %}
{% for year in site.data.projects.diode %}
{% assign id_variable = year[0] | append : "-projects-tab" %}
{% assign href_variable = "#" | append : year[0] | append : "-projects" %}
{% assign aria_variable = year[0] | append : "-projects" %}
{% if count == 0 %}
<li class="nav-item-custom active">
{% else %}
<li class="nav-item-custom">
{% endif %}
<a id={{id_variable}} data-toggle="pill" href={{href_variable}} role="tab" aria-controls={{aria_variable}} aria-selected="true">{{ year[0] }}</a>
</li>
{% assign count = 1 %}
{% endfor %}
</ul>
</div>
<div class="tab-content" id="pills-tabContent">
{% assign count_2 = 0 %}
{% for year in site.data.projects.diode %}
{% assign id_variable_2 = year[0] | append : "-projects" %}
{% assign aria_variable_2 = year[0] | append : "-projects-tab" %}
{% if count_2 == 0 %}
<div class="tab-pane fade active in" id={{id_variable_2}} role="tabpanel" aria-labelledby={{aria_variable_2}}>
{% else %}
<div class="tab-pane fade" id={{id_variable_2}} role="tabpanel" aria-labelledby={{aria_variable_2}}>
{% endif %}
<div id="projects" class="animate-box">
{% for project in year[1] %}
<div class="row colorlib-bg-white project-card">
<div class="col-md-12">
<h3>{{ project.Title }}</h3>
<div class="desc">
<p>{{ project.Abstract }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% assign count_2 = 1 %}
{% endfor %}
</div>
</div>
</div>