-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (57 loc) · 2.78 KB
/
index.html
File metadata and controls
68 lines (57 loc) · 2.78 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
<meta name="description" content="Stackandheap.github.io : Stack and Heap showcase"/>
<link rel="stylesheet" type="text/css" media="screen" href="bootstrap/css/bootstrap.min.css">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Stack & Heap showcase</title>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="index.html">Stack & Heap Showcase</a>
<div class="nav-collapse collapse" id="main-menu">
<ul class="nav" id="main-menu-left">
<li><a href="index.html">Home</a></li>
<li><a target="_blank" href="http://stackandheap.github.io/randoriPetStore/index.html">Randori demo</a></li>
</ul>
<ul class="nav pull-right" id="main-menu-right">
<li>
<a target="_blank" href="http://www.stackandheap.com/">Stack & Heap Homepage</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container" style="padding-top: 50px;">
<div class="page-header">
<h1>Randori demo application</h1>
</div>
<div class="row">
<div class="span4">
<img src="images/randori.jpg">
</div>
<div class="span8">
<p>As a proof of concept and concrete implementation of the Randori Framework, we've created a demo Pet Store.</p>
<p>In this application we tried to implement all the core functionality of the framework and created our own inputcomponents, router and mock services.</p>
<p>We've written articles about our experiences and some best practices while using Randori, you can find these at our blog.</p>
<p><a target="_blank" href="http://stackandheap.github.io/randoriPetStore/index.html">Discover the pet store</a></p>
<p><a target="_blank" href="https://github.com/StackAndHeap/randoriPetStore">Pet store source</a></p>
<p><a target="_blank" href="https://www.stackandheap.com/blog/">Stack & Heap Blog</a></p>
<p><a target="_blank" href="http://www.randoriframework.com/">Randori Framework homepage</a></p>
</div>
</div>
</div>
</body>
</html>