forked from kbonna/compneuro-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
185 lines (176 loc) · 7.4 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="css/research.css" />
<link
href="https://fonts.googleapis.com/css?family=Spectral:200,300,400,500,600,700,800&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700,800&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/1a78961bbe.js"
crossorigin="anonymous"
></script>
<title>Computational Neuroimaging Team</title>
</head>
<body>
<header>
<div class="container container--header">
<!-- logo -->
<div class="logo">
<a href="index.html" class="logo__link">
<h1 class="logo__text">
<span class="logo__accent">Comp</span
>utational<br /><span class="logo__accent"
>Neuro</span
>imaging Team
</h1>
</a>
</div>
<!-- burger -->
<input type="checkbox" class="burger" />
<div class="burger__outer">
<div class="burger__line"></div>
</div>
<!-- menu -->
<nav class="nav">
<ul class="nav__list">
<li class="nav__item">
<a
href="index.html"
class="nav__link nav__link--active"
>
Research
</a>
</li>
<li class="nav__item">
<a href="team.html" class="nav__link">
Team
</a>
</li>
<li class="nav__item">
<a href="publications.html" class="nav__link">
Publications
</a>
</li>
<li class="nav__item">
<a href="contact.html" class="nav__link">
Contact
</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<div class="container container--research">
<!-- manifest -->
<p class="manifest">
Our mission is to understand how higher cognitive functions
emerge from the complex brain architecture. We are a team of
young researchers passionate about neuroscience,
programming, and data analysis. We support and actively
contribute to open science movement.
</p>
<!-- section title -->
<h1 class="section-title">Research</h1>
<div class="project-container">
<!-- project 1 -->
<div class="project">
<img
src="img/project_1.png"
alt="project 1 logo"
class="project__logo"
/>
<h1 class="project__title">
Reorganization of brain networks
</h1>
<p class="project__desc">
We study the dynamics and plasticity of functional
brain networks during cognitive tasks and learning.
</p>
<div class="project__btn-spacer"></div>
<a href="project_1.html" class="btn">More</a>
</div>
<!-- project 2 -->
<div class="project">
<img
src="img/project_2.png"
alt="project 2 logo"
class="project__logo"
/>
<h1 class="project__title">
Value-based decision making
</h1>
<p class="project__desc">
We seek to understand how the brain implements
valuation and decision making algorithms and how
they interact during learning.
</p>
<div class="project__btn-spacer"></div>
<a href="project_2.html" class="btn">More</a>
</div>
<!-- project 3 -->
<div class="project">
<img
src="img/project_3.png"
alt="project 3 logo"
class="project__logo"
/>
<h1 class="project__title">
Reproducible neuroimaging
</h1>
<p class="project__desc">
We develop software that facilitate reproducible
neuroimaging data analysis and support open science
movement.
</p>
<div class="project__btn-spacer"></div>
<a href="project_3.html" class="btn">More</a>
</div>
</div>
</div>
</main>
<footer>
<div class="container container--footer">
<!-- social icons -->
<div class="social">
<a
href="https://github.com/compneuro-ncu"
class="social__link social__link--github"
>
<i class="social__icon fab fa-github"></i>
</a>
<a
href="https://twitter.com/karofinc"
class="social__link social__link--twitter"
>
<i class="social__icon fab fa-twitter"></i>
</a>
</div>
<!-- contact information -->
<div class="address">
<a href="https://www.umk.pl/en/" class="address__uni-link">
<img
src="img/ncu-logo.svg"
alt=""
class="address__uni-logo"
/>
</a>
<div class="address__group">
COMPUTATIONAL NEUROIMAGING TEAM<br />
Centre for Modern Interdisciplinary Technologies<br />
Nicolaus Copernicus University in Toruń<br />
Wileńska 4, 87-100 Toruń, Poland<br />
</div>
</div>
</div>
</footer>
</body>
</html>