-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (43 loc) · 2.13 KB
/
index.html
File metadata and controls
70 lines (43 loc) · 2.13 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
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 ng-app='codeLibrary'>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Code Library</title>
<link rel="stylesheet" type="text/css "href="css/style.css" media="screen" title="no title" charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=PT+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/gridlex/2.0.8/gridlex.css">
</head>
<body ng-controller="mainCtrl">
<header class="header">
<section class="menu" img src=""></section>
<section class="logo"><i class="fa fa-code code-icon fa-5x"></i></section>
</header>
<main class="main-container">
<section class="left-menu-section">
<section class="search-bar">
<input ng-model="filterTopic" class="search" type="text" placeholder="Search by topic" name="search" value="">
</section>
<a ui-sref="{{topic.state}}" ng-repeat='topic in topics | filter: filterTopic '>
<p class="topic-names">
{{topic.name}}
</p>
</a>
</section>
<section ui-view>
</section>
<!-- <footer-directive></footer-directive> -->
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.5/angular.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.18/angular-ui-router.js'>
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.1/jquery.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous">
</script>
<script src='js/app.js'></script>
<script src='controllers/mainCtrl.js'></script>
<script src='services/topicService.js'></script>
<!-- <script src='js/footerDirective.js'></script> -->
</body>
</html>