-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (103 loc) · 5.83 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!--Title:Storyteller-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="generator" content="Bootply" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel=icon href=/content/images/favicon.ico>
<title>Storyteller</title>
<link href="/content/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
</head>
<body>
<a href="https://github.com/storyteller/storyteller"><img style="z-index: 5000; position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/e7bbb0521b397edbd5fe43e7f760759336b5e05f/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png"></a>
<nav class="navbar navbar-default navbar-fixed-top" role="banner">
<div class="container">
<div class="navbar-header">
<a href="/" class="navbar-brand">Storyteller</a>
</div>
<nav class="collapse navbar-collapse" role="navigation">
<ul class="nav navbar-nav pull-right">
<li>
<a href="/tutorial">Tutorial</a>
</li>
<li>
<a href="/documentation/getting_started">Getting Started</a>
</li>
<li>
<a href="/documentation">Documentation</a>
</li>
<li>
<a href="https://gitter.im/storyteller/Storyteller?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"><img src="https://camo.githubusercontent.com/da2edb525cde1455a622c58c0effc3a90b9a181c/68747470733a2f2f6261646765732e6769747465722e696d2f4a6f696e253230436861742e737667" alt="Join the chat at https://gitter.im/storyteller/storyteller" data-canonical-src="https://badges.gitter.im/Join%20Chat.svg" style="max-width:100%;"></a>
</li>
<li>
<a href="https://github.com/storyteller/storyteller/blob/master/documentation/splash.htm" class="text-muted"><i class="fa fa-github"></i> Edit on GitHub</a>
</li>
</ul>
<div class="navbar-form navbar-left" role="search">
<div class="form-group">
<input id="search" type="search" class="form-control" placeholder="Search">
</div>
</div>
</nav>
</div>
</nav>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1>Storyteller</h1>
<p>Solutions for creating robust, human readable acceptance tests for your .Net or CoreCLR system and a means to create "living" technical documentation.</p>
<p><a class="btn btn-primary btn-lg" href="/documentation" role="button">Learn more »</a></p>
</div>
</div>
<div class="container">
<div class="text-center">
<iframe align="middle" width="420" height="315"
src="http://www.youtube.com/embed/myDJzQvW7lY?autoplay=0">
</iframe>
</div>
<br />
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2>Executable Specifications</h2>
<p>Traditional requirements documents consisting of a wall of "the system shall do this vaguely understood thing" prose can easily lead to project waste when developers, users, and testers all interpret the wording in different ways. To eliminate ambiguity in your requirements, use Storyteller to create detailed executable specifications.
</p>
<p><a class="btn btn-default" href="/documentation/language" role="button">View details »</a></p>
</div>
<div class="col-md-4">
<h2>Robust Integration Testing for .Net</h2>
<p>In a perfect world, you would love to have a good, reliable suite of automated regression tests in your software project. However, automating integration tests for complex software systems can be very difficult. See how Storyteller has been built to alleviate the typical problems you may have suffered in past attempts at large scale automated testing.</p>
<p><a class="btn btn-default" href="/documentation/using/best_practices" role="button">View details »</a></p>
</div>
<div class="col-md-4">
<h2>Living Documentation Generation</h2>
<p>Writing good documentation for your software product is hard work -- but all that hard work is all for naught if that documentation gets out of synch with your code as the product evolves. To address this issue, Storyteller helps you create and easily maintain "living documentation" that can keep up with the pace of your development. No more excuses for missing documentation.</p>
<p><a class="btn btn-default" href="/documentation/docs" role="button">View details »</a></p>
</div>
</div>
<hr>
</div> <!-- /container -->
<script type='text/javascript' src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type='text/javascript' src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/content/embed.js"></script>
<script>
$('#search').keyup(function(e){
if(e.keyCode == 13) {
var search = $('#search').val();
var url = 'https://www.google.com/#q=site:storyteller.github.io ' + search;
url = encodeURI(url);
//alert(url);
window.location.href = url;
e.stopPropagation();
if (e.cancelBubble!=null) e.cancelBubble = true;
return false;
}
});
</script>
</body>
</html>