-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathcompsoc.html
127 lines (117 loc) · 5.45 KB
/
compsoc.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
116
117
118
119
120
121
122
123
124
125
126
127
---
layout: default
title: Computer Society
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>
The NITK-IEEE Computer Society is a conglomeration of students with a passion for Computer Science and Information Technology. This SIG is a great platform for those who want to gain expertise in computer based technology.
</p>
<p>
In the true spirit of divide and conquer, our community intends to explore and contribute to the rapidly evolving world of computer technologies
by carrying out research and projects in the broad domains of computer science, in the form of 3 research groups :
</p>
</div>
</div>
<div class="row">
<div class="col-md-4 text-center colorlib-heading animate-box">
<h4>Intelligence</h4>
<p>
Machine Learning, Artificial Intelligence, Deep Learning, Computer Vision, NLP
</p>
</div>
<div class="col-md-4 text-center colorlib-heading animate-box">
<h4>Systems</h4>
<p>
Operating Systems, Parallel Computing, Network Security, Distributed Systems
</p>
</div>
<div class="col-md-4 text-center colorlib-heading animate-box">
<h4>Core Computer Science</h4>
<p>
Algorithms, Cryptography, Databases, Game Theory, Web & Software Development
</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/compsoc/" class="btn btn-primary btn-outline">Compsoc 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.compsoc %}
{% 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.compsoc %}
{% 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>
{% if project.github != "" %}
<p><a href= {{project.github}} class="btn btn-primary btn-outline with-arrow" target="_blank">View on Github<i class="fa fa-github"></i></a></p>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% assign count_2 = 1 %}
{% endfor %}
</div>
</div>
</div>