-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (89 loc) · 3.01 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
<!DOCTYPE html>
<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">
<meta name="description" content="CaptainHook is a bloody flexible and easy to use git hook manager that makes sharing hooks with your team a breeze.">
<title>CaptainHook Documentation</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/layout.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<link rel="icon" type="image/png" href="gfx/favicon.png">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand">
<div class="logo-plus-title"><img src="gfx/captainhook.png" alt="CaptainHook" width="55"/> Captainhook</div>
</a>
</div>
</div>
</nav>
</header>
<div class="container theme-showcase" role="main">
<div class="jumbotron">
<h1>CaptainHook</h1>
<p>
Avast, ye landlubbers <em>CaptainHook</em> is a bloody flexible and easy to use git hook manager.
</p>
</div>
</div>
<div class="container">
<div class="col-lg-6">
<h3>The Cap'n in a Nutshell</h3>
<p>
If ye want to make sure nobody commits code that breaks yer tests or codin` standard,
or ye want to validate commit messages, <em>CaptainHook</em> can help ye to get going mate. ARRRR!
</p>
</div>
<div class="col-lg-6">
<h3>Available versions</h3>
<p>
There are two versions of CaptainHook available. One <a href="go/">Golang version</a>,
that could be installed natively on most machines and a <a href="php/">PHP version</a> targeted to PHP developers.
</p>
</div>
</div>
<div class="container">
<h3 style="text-align:center;">Choose What Floats Your Boat</h3>
<div class="fake-body">
<a href="go/">
<div class="card">
<div class="wrapper">
<img src="gfx/ship-bg-01.jpg" alt="GO" class="cover-image"/>
</div>
<img src="gfx/go-title.png" alt="GO" class="title"/>
<img src="gfx/go-captain.png" alt="GO" class="character"/>
</div>
</a>
<a href="php/">
<div class="card">
<div class="wrapper">
<img src="gfx/ship-bg-02.jpg" alt="PHP" class="cover-image"/>
</div>
<img src="gfx/php-title.png" alt="PHP" class="title"/>
<img src="gfx/php-captain.png" alt="PHP" class="character"/>
</div>
</a>
</div>
</div>
<footer class="footer">
<div class="container">
<p>
© <a href="https://github.com/sebastianfeldmann">Sebastian Feldmann</a>
</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
</body>
</html>