-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathbanner.html
116 lines (116 loc) · 5.82 KB
/
banner.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
<header>
<div class="header-wrap">
<div class="installation">
<div class="site-description">
{{ site.description | markdownify }}
</div>
<div class="card-wrap">
<div class="card">
<div class="card-inner">
<h1>
Download Chai
<span class="version">{{ site.data.releases[0].name }}</span>
</h1>
<div id="node" class="install">
<h2>
for Node
<small>Another platform?
<a href="#browser" class="toggle">Browser</a>
<a href="#rails" class="toggle">Rails</a>
</small>
</h2>
<div class="download-banner">
<div class="description">
The <code>chai</code> package is available
on npm.
</div>
<div class="command dsp-left">
$ npm install chai
</div>
<a href="/guide/installation/#nodejs" class="button dsp-right">
View Node Guide
</a>
</div>
</div>
<div id="browser" class="install">
<h2>
for Browser
<small>Another platform?
<a href="#node" class="toggle">Node</a>
<a href="#rails" class="toggle">Rails</a>
</small>
</h2>
<div class="download-banner">
<div class="description">
The <code>chai.js</code> script is available
for download or a hotlink.
</div>
<a href="http://chaijs.com/chai.js" class="button-alt dsp-left">
Download chai.js
</a>
<a href="/guide/installation/#browser" class="button dsp-right">
View Browser Guide
</a>
</div>
</div>
<div id="rails" class="install">
<h2>
for Rails
<small>Another platform?
<a href="#node" class="toggle">Node</a>
<a href="#browser" class="toggle">Browser</a>
</small>
</h2>
<div class="download-banner">
<div class="description">
Chai is available through Konacha, a modern
test harness that takes full advantage of
Rails 3 features such as the asset pipeline
and engines.
</div>
<a href="https://github.com/jfirebaugh/konacha" target="_blank" class="button-alt dsp-full">
Konacha GitHub Project
</a>
</div>
</div>
<div class="tech-links">
<a href="https://github.com/chaijs/chai/issues" target="_blank">
Issues
</a>
|
<a href="https://github.com/chaijs/chai" target="_blank">
Fork on GitHub
</a>
|
<a href="/releases" target="_blank">
Releases
</a>
|
<a href="http://groups.google.com/group/chaijs" target="_blank">
Google Group
</a>
|
<a href="http://travis-ci.org/#!/chaijs/chai" target="_blank">
Build Status
</a>
</div>
</div>
</div>
</div>
</div>
<div class="callouts">
<div id="guide" class="call"><a href="/guide"><span class="icon"></span>
<big>Getting Started</big><small>Learn how to install and use Chai through a series of guided walkthroughs.</small></a>
<div class="bg"></div>
</div>
<div id="api" class="call"><a href="/api"><span class="icon"></span>
<big>API Documentation</big><small>Explore the BDD & TDD language specifications for all available assertions.</small></a>
<div class="bg"></div>
</div>
<div id="plugins" class="call"><a href="/plugins"><span class="icon"></span>
<big>Plugin Directory</big><small>Extend Chai's with additional assertions and vendor integration.</small></a>
<div class="bg"></div>
</div>
</div>
</div>
</header>