-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (78 loc) · 2.33 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
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D82YSJ5V7E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D82YSJ5V7E');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Mikhail Fominykh personal web-page</title>
<link rel="stylesheet" href="style.css">
<LINK REL="SHORTCUT ICON" HREF="res/fominykh_16px.png">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59128604-1', 'auto');
ga('send', 'pageview');
</script>
<script src="jquery-3.6.4.js"></script>
<script>
$(function(){$("#bottomPage").load("bottom.html");});
$(function(){$("#headerPage").load("header.html");});
$(function(){$("#masterPage").load("master.html");});
$(function(){$("#indexContent").load("index_content.html");});
</script>
<script>
$("document").ready(function($){
var nav = $('#navigation_container');
$(window).scroll(function () {
if ($(this).scrollTop() > 208) {
nav.addClass("f-nav");
} else {
nav.removeClass("f-nav");
}
});
});
</script>
</head>
<body>
<div class="wrapper">
<div class="master_header">
<div class="master_sn" id="masterPage"></div>
</div>
<div class="name_wrapper">
<div class="name_block">
<div id="headerPage"></div>
</div>
</div>
<div id="navigation_container">
<div class="navigation_block">
Home
<b>|</b>
<a href="activities.html">Activities</a>
<b>|</b>
<a href="publications.html">Publications</a>
<b>|</b>
<a href="projects.html">Projects</a>
<b>|</b>
<a href="committees.html">Committees</a>
<b>|</b>
<a href="phd.html">PhD</a>
<b>|</b>
<a href="cv.html">CV</a>
<b>|</b>
<a href="contact.html">Contact</a>
</div>
</div>
<div class="content_wrapper">
<div class="content" id="indexContent"></div>
</div> <!--content_wrapper*//-->
<div id="bottomPage"></div>
</div> <!--wrapper*//-->
</body>
</html>