-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (57 loc) · 2.63 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
<!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="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/img/favicon.ico" type="image/x-icon">
<link rel="icon" href="assets/img/favicon.ico" type="image/x-icon">
<title>Whimsical Wordimal</title>
<!-- Custom styles for this template -->
<link href="assets/css/jumbotron-narrow.css" type="text/css" rel="stylesheet">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
//substitute in your own analytics code
ga('create', 'UA-XXXXXXXX-X', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Whimsical Wordimal</h1>
<p class="lead">A simple site for generating an Ubuntu style adjective animal name pairing. Click below to try.</p>
<p><a class="btn btn-lg btn-success" href="#" id="generateName" role="button">Generate Name</a></p>
<h1 id="newName"></h1>
</div>
<footer class="footer">
<p>© <a href="https://github.com/ncwhitehead" target="_blank" alt="Nicole Whitehead's GitHub">Nicole Whitehead, 2014</a></p>
<p>MIT licensed</p>
<p>Powered by <a href="https://github.com/ncwhitehead/animal-namer-api" target="_blank" alt="">animal-namer-api</a></p>
</footer>
</div>
<script type="text/javascript">
$( "#generateName" ).click(function() {
var nextName = $.ajax({
url: '/api/name',
cache: false,
success: function (data) {
console.log(data);
$("#newName").text(data.name);
}
});
});
</script>
</body></html>