-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 1.97 KB
/
index.html
File metadata and controls
62 lines (62 loc) · 1.97 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
<!doctype html>
<html lang="en" xmlns-ng="http://angularjs.org" ng-app="kodigon" ng-controller="appController">
<head>
<meta charset="utf-8">
<title>Kodigon - Example of project using AngularJS</title>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Luckiest+Guy">
<link rel="icon" type="image/png" href="favicon.png">
<!--[if IE]>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<![endif]-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<nav class="top-bar">
<ul>
<li class="name" ng-class="{active: location.path() == '/'}">
<h1><a href="#">Kodigon</a></h1>
</li>
</ul>
<section>
<ul class="left">
<li class="divider"></li>
<li ng-class="{active: location.path() == '/about'}">
<a href="#/about">About</a>
</li>
<li class="divider"></li>
<li class="has-dropdown" ng-class="{active: algoLocation.test(location.path())}">
<a href="#">Algorithms</a>
<ul class="dropdown">
<li><a href="#/algorithm/base64" class="">Base64</a></li>
<li><a href="#/algorithm/md5">MD5</a></li>
<li><a href="#/algorithm/sha1">SHA1</a></li>
<li><a href="#/">See all →</a></li>
</ul>
</li>
<li class="divider"></li>
<li>
<a href="https://github.com/yrezgui/kodigon">Github</a>
</li>
<li class="divider"></li>
</ul>
</section>
</nav>
<div ng-view></div>
<footer class="row">
<div class="twelve columns">
<hr>
<div class="row">
<div class="six columns">
<p><a href="http://projects.yrezgui.com/kodigon/">Kodigon</a> © 2012 <a href="http://www.yrezgui.com">Yacine Rezgui</a></p>
</div>
</div>
</div>
</footer>
<script src="js/angular.js" ng-autobind></script>
<script src="js/app.js"></script>
</body>
</html>