-
Notifications
You must be signed in to change notification settings - Fork 74
/
piston.html
104 lines (95 loc) · 4.48 KB
/
piston.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
---
layout: default
title: Piston
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">
<h2>About Us</h2>
<p>
Piston is a SIG dedicated to the engineering applications of Mechanical, Automation, Civil, Chemical and Material Sciences.
The SIG functions as a platform for students interested in learning and advancing specific areas of knowledge and technology.
The SIG members co-operate, communicate, and organise meets, talks and conferences to discuss the latest technological advancements and applications.
</p>
<p>
The SIG specializes on a lot of areas like Aerospace Engineering, Automobile Engineering, Bio-Mechanical Applications, Chemical and Thermal Engineering, Heat and Renewable Energy Engineering, Robotics, Controls & Mechatronics and Structures & Materials.
</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/piston/" class="btn btn-primary btn-outline">Piston 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.piston %}
{% 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.piston %}
{% 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>