-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (40 loc) · 2.14 KB
/
index.html
File metadata and controls
46 lines (40 loc) · 2.14 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
<!DOCTYPE html>
<html>
<title>SMASH! View your favorite comic book characters. </title>
<head>
<link href='http://fonts.googleapis.com/css?family=Chewy' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="lib/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="public/css/style.css">
</head>
<body data-ng-app="smash" data-ng-controller="mainController">
<div class='container-fluid'>
<div data-ng-view> </div>
</div>
<div style=height:40px;'></div>
<div id='logo'>SMASH! SMASH! SMASH! SMASH! SMASH! SMASH! SMASH! SMASH!</div>
<div class='footer1'>
<div id='twitter'>
<a href="https://twitter.com/bit_militia" class="twitter-follow-button" data-show-count="false">Follow @bit_militia</a>
<a href="https://twitter.com/chrisfishwood" class="twitter-follow-button" data-show-count="false">@chrisfishwood</a>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://smashcoders.github.io/smash/" data-text="Check out this AngularJS site for viewing your favorite comic book characters" data-via="bit_militia" data-hashtags="angularjs">Tweet</a>
</div>
</div>
<div class='footer2'>
<a href="http://marvel.com">
Data provided by Marvel. © 2014 MARVEL
</a>
</div>
<a id="github_fork_banner" href="https://github.com/smashcoders/smash">
<img src="public/images/github_fork_banner.png" alt="Fork me on GitHub">
</a>
<!-- twitter button code -->
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<!-- load scripts -->
<script src="lib/lodash.compat.min.js"></script>
<script src="lib/angular.min.js"></script>
<script src="lib/angular.min.js.map"></script>
<script src="lib/angular-route.min.js"></script>
<script src="lib/angular-route.min.js.map"></script>
<script src="public/app.js"></script>
</body>
</html>