-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
97 lines (80 loc) · 3.92 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
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta property="og:image" content="https://i.ibb.co/nQzyPyG/assembler-example.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Эмулятор БЭВМ">
<meta name="author" content="Arthur Kupriyanov">
<meta name="generator" content="Jekyll v3.8.5">
<title>Эмулятор БЭВМ</title>
<link rel="canonical" href="https://getbootstrap.com/docs/4.3/examples/cover/">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script type="text/javascript" src="page/react.js"></script>
<script type="text/javascript" src="page/react-dom.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-router-dom/4.3.1/react-router-dom.min.js"></script>
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="./page/style.css" rel="stylesheet">
</head>
<body class="text-center">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="masthead-brand">Эмулятор БЭВМ</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link header-auto-active active " href="#/">Main</a>
<a class="nav-link header-auto-active" href="#/features">Features</a>
<a class="nav-link header-auto-active" href="#/contributing">Contributing</a>
<a class="nav-link header-auto-active d-none d-sm-block " href="#/download">Download</a>
</nav>
</div>
</header>
<div id="react-content"></div>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Author: <a href="https://github.com/AppLoidx">Arthur Kupriyanov</a><br/> Source code: <a href="https://github.com/AppLoidx/bcomp-extended">GitHub Repository</a>.</p>
</div>
</footer>
</div>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script type="text/javascript" src="page/compiled/Contributing.js"></script>
<script type="text/javascript" src="page/compiled/FeaturesPage.js"></script>
<script type="text/javascript" src="page/compiled/MainPage.js"></script>
<script type="text/javascript" src="page/compiled/Download.js"></script>
<script type="text/javascript" src="page/compiled/Script.js"></script>
<script>
$(document).ready(function() {
$( ".header-auto-active" ).bind( "click", function(event) {
var clickedItem = $( this );
$( ".header-auto-active" ).each( function() {
$( this ).removeClass( "active" );
});
clickedItem.addClass( "active" );
});
});
</script>
</body>
</html>