-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (77 loc) · 3.65 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
<html lang="en"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Simulizer Beta</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/carousel.css" rel="stylesheet">
</head>
<!-- NAVBAR
================================================== -->
<body>
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img class="first-slide" src="img/SimulizerLogo.png">
<div class="container">
<div class="carousel-caption">
<h1>Hate Spim? Give us a try</h1>
<p></p>
<p><a class="btn btn-lg btn-primary" href="https://github.com/Simulizer/Simulizer/releases/tag/0.42-beta" role="button">Download Now</a></p>
</div>
</div>
</div>
</div>
</div><!-- /.carousel -->
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<div class="container marketing">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">IDE like editor</h2>
<p class="lead">Edit assembly files directly in the application. No more closing and reopening spim</p>
</div>
<div class="col-md-5">
<img data-holder-rendered="true" src="img/feature1.png">
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7 col-md-push-5">
<h2 class="featurette-heading">High Level Visualisation</h2>
<p class="lead">Visualise what your program is actually doing with inbuilt high level visualisations</p>
</div>
<div class="col-md-5 col-md-pull-7">
<img data-holder-rendered="true" src="img/feature2.png" class="featurette-image img-responsive center-block">
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Built in teaching aids</h2>
<p class="lead">See exactly what the CPU is doing during the Fetch-Decode-Execute cycle</p>
</div>
<div class="col-md-5">
<img data-holder-rendered="true" src="img/feature3.png">
</div>
</div>
<hr class="featurette-divider">
<h1 align="center">So what are you waiting for?</h1>
<p align="center"><a class="btn btn-lg btn-primary" href="https://github.com/Simulizer/Simulizer/releases/tag/0.42-beta" role="button">Try it out now</a></p>
<img data-holder-rendered="true" src="img/fullapp.png" class="featurette-image img-responsive center-block" >
<!-- /END THE FEATURETTES -->
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="/js/bootstrap.min.js"></script>
</body>
</html>