forked from fahad19/FontAwesomeFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (56 loc) · 2.39 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
<!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.0">
<meta name="description" content="">
<meta name="author" content="">
<title>FontAwesome Finder - search FontAwesome icons instantly!</title>
<link href="./css/app.css" rel="stylesheet">
</head>
<body ng-app="FontAwesomeFinder" ng-controller="IndexController">
<header>
<div class="container">
<div class="col-md-12">
<h1><i class="fa fa-flag"></i> Font Awesome Finder</h1>
<p>Instantly search Font Awesome icons!</p>
<input type="search" results="5" ng-model="q" ng-change="search()" class="form-control" placeholder="class name here..., e.g. 'fa-github-square' OR 'github'" />
</div>
</div>
</header>
<section>
<div class="container">
<div class="row">
<div class="col-md-12 icons-list">
<div class="col-md-3 icon" ng-repeat="icon in icons" ng-show="isVisible(icon)">
<a href="javascript:">
<i class="fa {{icon.name}}"></i> {{icon.name}}
</a>
</div>
</div>
<div ng-show="visibleCount == 0" class="col-md-12">
<div class="alert alert-warning">
You search didn't return any results. Please try a different keyword.
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
Built with Bootstrap/FontAwesome and AngularJS, by <a href="http://twitter.com/fahad19">@fahad19</a>
</div>
</footer>
<a href="https://github.com/fahad19/FontAwesomeFinder"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<script src="./js/app.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');
ga('create', 'UA-47493443-2', 'fahad19.github.io');
ga('send', 'pageview');
</script>
</body>
</html>