-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathindex.html
95 lines (81 loc) · 3.42 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!doctype html>
<html lang="en" ng-app="myApp">
<head>
<meta charset="utf-8">
<title>Simply Do - Cryptography Project</title>
<link rel="stylesheet" href="css/default.css"/>
</head>
<body>
<div class="navbar navbar-fixed-top" ng-controller="navigationCtrl">
<div class="navbar-inner">
<div class="container">
<ul class="nav" >
<li ng-class="{active: location.path() == '/aes'}">
<a href="#/aes">Encrypt and Decrypt</a>
</li>
<li ng-class="{active: location.path() == '/phrases'}">
<a href="#/phrases">Key Maker</a>
</li>
<li ng-class="{active: location.path() == '/about'}">
<a href="#/about">About</a>
</li>
<!--
<li ng-class="{active: location.path() == '/memorize'}">
<a href="#/memorize">Memorize</a>
</li>
<li ng-class="{active: location.path() == '/about'}">
<a href="#/about">About</a>
</li>
-->
</ul>
<ul class="nav pull-right">
<li><a href="http://simplydo.com" target="new"><i class="icon-arrow-right icon-white"></i> A Simply Do project</a></li>
</ul>
</div>
</div>
</div>
<div ng-view></div>
<div id="footer">
<div class="container">
<div class="row">
<div class="span4">
<p>© 2012 <a href="http://simplydo.com" target="new">Simply Do</a>, LLC.<br />All Rights Reserved.</p>
</div>
<div class="span4">
<ul class="unstyled">
<li>Follow <a href="http://twitter.com/#!/SimplyDoThat" target="new">@SimplyDoThat</a> on Twitter</li>
</ul>
</div>
<div class="span4">
<ul class="unstyled">
<li>The source code is open and <a href="https://github.com/SimplyDo/cryptography" target="new">available on Github</a></li>
<li>Created with <a href="http://angularjs.org/" target="new">AngularJS</a> by Google</li>
<li>Encryption through <a href="http://code.google.com/p/crypto-js/" target="new">CryptoJS</a></li>
<li>Social buttons by <a href="http://socialitejs.com/" target="new">Socialite.js</a></li>
<li>Words lists based on <a href="http://wordlist.sourceforge.net/" target="new">Kevin's Word List Page</a></li>
<li>The UI is <a href="http://twitter.github.com/bootstrap/" target="new">Twitter Bootstrapped</a></li>
<li>Hosted with <a href="http://pages.github.com/" target="new">Github pages</a></li>
</ul>
</div>
</div>
</div>
</div>
<script src="lib/angular/angular.js"></script>
<script src="js/app.js"></script>
<script src="js/services.js"></script>
<script src="js/controllers.js"></script>
<script src="js/filters.js"></script>
<script src="js/directives.js"></script>
<script src="lib/CryptoJS/rollups/aes.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-29523960-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>