forked from superfeedr/subtome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (58 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en" manifest="subtome.appcache" ng-app="subtome">
<head>
<meta charset="utf-8">
<title>SubToMe</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A Uniersal follow app for the open web">
<meta name="author" content="Julien Genestoux">
<link type="application/atom+xml" rel="alternate" titme="Superfeedr blog" href="http://blog.superfeedr.com/atom.xml" />
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/subtome.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/bootstrap-modal.css" rel="stylesheet">
<link href="css/gist.github.heygears.com.css" rel="stylesheet" type="text/css">
<script src="js/angular.min.js"></script>
<script src="js/i18next.js"></script>
<script src="js/ng-i18next.js"></script>
<script src="js/angular-ga.js"></script>
<script src="js/jquery.js"></script>
<script src="js/moment.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-modalmanager.js"></script>
<script src="js/bootstrap-modal.js"></script>
<script src="js/compatibility.js"></script>
<script src="js/services.js"></script>
<script src="js/store.js"></script>
<script src="js/subtome.js"></script>
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="icon" href="img/favicon.ico">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<script>
if(window.location.host == 'www.subtome.com' && window.location.protocol != 'https:') {
window.location.replace('https' + window.location.href.substr(4));
}
</script>
<div class="container-narrow">
<div class="masthead main-layout">
<ul class="nav nav-pills pull-right">
<li><a ng-i18next="nav.settings" ng-href="#/settings">Settings</a></li>
<li><a ng-i18next="nav.publishers" ng-href="#/publishers">Add a button to your site</a></li>
<li><a ng-i18next="nav.developers" ng-href="#/developers">Apps</a></li>
</ul>
<h3 class="muted"><a href="/" class='subtome'><img src="img/subtome-small.png" style="height: 35px;"/></a></h3>
</div>
<hr class='main-layout'>
<div ng-view></div>
<hr class='main-layout'>
<div class='footer main-layout'>
<p ng-i18next="[html]footer">Brought to you by<a href="http://superfeedr.com">Superfeedr</a> <img src="./img/superfeedr.png" >. <a class="github" href="https://github.com/superfeedr/subtome">Source Code</a></p>
</div>
</div> <!-- /container -->
</body>
</html>