-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (157 loc) · 4.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="google-site-verification"
content="Y2L9VI6l9bN31HUD7h9IXpCUJPN4GmvW4UT9d3Xy_u8"
/>
<title>Dr. Ivan Katkov's Personal Webpage</title>
<!-- CSS only -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<script type="application/ld+json">
{
"@context": "http://www.schema.org",
"@type": "Person",
"@id": "https://ivan-katkov.github.io/",
"name": "Ivan Katkov",
"alternateName": "Ivan Yu. Katkov",
"nationality": "Russian",
"birthPlace": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressCountry": "Russia"
}
},
"affiliation": [
{
"@type": "Organization",
"name": "New York University Abu Dhabi",
"sameAs": [
"https://nyuad.nyu.edu/",
"https://twitter.com/nyuabudhabi/",
"https://www.facebook.com/NYUAD/"
]
},
{
"@type": "Organization",
"name": "Moscow State University",
"sameAs": ["https://www.msu.ru/", "https://twitter.com/msu_ru/"]
},
{
"@type": "Organization",
"name": "Sternberg Astronomical Institute",
"sameAs": ["http://sai.msu.ru/"]
}
],
"alumniOf": [
{
"@type": "CollegeOrUniversity",
"name": "Moscow State University",
"sameAs": "https://www.msu.ru/"
}
],
"gender": "Male",
"Description": "Astrophysicist",
"jobTitle": "Postdoctoral associate",
"worksFor": [
{
"@type": "Organization",
"name": "New York University Abu Dhabi",
"sameAs": [
"https://nyuad.nyu.edu/",
"https://twitter.com/nyuabudhabi/",
"https://www.facebook.com/NYUAD/"
]
}
],
"url": "https://ivan-katkov.github.io",
"image": "https://ivan-katkov.github.io/assets/img/Photo75.jpg",
"address": [
{
"@type": "PostalAddress",
"addressLocality": "Moscow",
"addressCountry": "Russia"
},
{
"@type": "PostalAddress",
"addressLocality": "Abu Dhabi",
"addressCountry": "United Arab Emirates"
}
],
"sameAs": [
"https://vk.com/id40664",
"https://www.facebook.com/ivan.katkov.3",
"https://twitter.com/IvanKatkov",
"https://www.linkedin.com/in/ivan-katkov-9556ab48/",
"https://istina.msu.ru/profile/katkov/"
]
}
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-P85XG5EK7N"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-P85XG5EK7N')
</script>
</head>
<body>
<div class="landing-main">
<div class="container mainbox">
<div class="row">
<div class="col-lg-3">
<img
class="img-photo"
src="assets/img/Photo75.jpg"
width="255"
alt="Photo Ivan Katkov"
/>
<div class="mt-4">
<div>ivan.katkov AT nyu.edu</div>
<div>katkov.ivan AT gmail.com</div>
</div>
</div>
<div class="col-lg-8 offset-lg-1">
<h1>Dr. Ivan Katkov</h1>
<div class="mt-3">
<div>
Postdoctoral associate at the New York University Abu Dhabi, UAE
</div>
<div>
Researcher at the Sternberg Astronomical Institute of the
Lomonosov Moscow State University, Russia
</div>
</div>
<div class="mt-5">
Research interests:
<ul>
<li>Kinematically misaligned structures in galaxies</li>
<li>Outflow in galaxies</li>
<li>Stellar populations and galaxy evolution</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
</html>