-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (76 loc) · 3.6 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
<!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">
<title>SBTCVM</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container-fluid">
<div class="row header">
<div class="col-sm-2 col-md-2"></div>
<div class="col-xs-12 col-sm-2 col-md-2">
<img class="logo" src="assets/logo.png" alt="Logo">
<h2 class="pagetitle text-center">
SBTCVM
</h2>
</div>
<div class="col-xs-12 col-sm-6 col-md-6">
<div class="navbar">
<ul class="list-inline">
<li > <a class="nav-item nav-active" href="index.html"> Home </a> </li>
<li> <a class="nav-item" href="about.html"> About </a> </li>
<li> <a class="nav-item" href="download.html"> Download </a> </li>
<li> <a class="nav-item" href="https://sbtcvm.blogspot.com/"> Blog </a> </li>
<li> <a class="nav-item" href="https://github.com/SBTCVM"> Github </a> </li>
<li> <a class="nav-item" href="https://plus.google.com/communities/116908434550924387517"> Google+ </a> </li>
</ul>
</div>
</div>
<div class="col-sm-2 col-md-2"></div>
</div>
<div class="row centerpeice">
<div class="col-sm-2 col-md-2"> </div>
<div class="col-xs-12 col-sm-3 col-md-3">
<h2> What is SBTCVM? </h2>
<p> SBTCVM is a project to develop a usable balanced ternary virtual machine, as well as develop the related
tools, apis, programming languages, and libraries.
</p>
</div>
<div class="hidden-xs col-sm-5 col-md-5">
<img class="centerimage" src="assets/screenshots/item2.png" alt="Screenshot of SBTCVM">
</div>
<div class="col-sm-2 col-md-2"> </div>
</div>
<div class="row">
<h2 class="text-center section-title">Projects</h2>
</div>
<div class="row project-cards">
<div class="col-sm-1 col-md-1"></div>
<div class="col-xs-12 col-sm-4 col-md-4">
<div class="card">
<h3 class="project-title text-center">SBTCVM Mark 2</h3>
<p>
SBTCVM Mark 2 is the latest and greatest VM developed by the SBTCVM project. It includes a variety of programs, and several
utilities, such as a command shell, and a custom assembler.
</p>
</div>
</div>
<div class="col-sm-2 col-md-2"></div>
<div class="col-xs-12 col-sm-4 col-md-4">
<div class="card">
<h3 class="project-title text-center">libbaltcalc</h3>
<p>
libbaltcalc is SBTCVM's balanced ternary integer mathematics backend and provides powerful balanced ternary integer support
to python, It features both a lower level functional API and a high-level class-based API as well.
</p>
</div>
</div>
<div class="col-sm-1 col-md-1"></div>
</div>
</div>
</body>
</html>