-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (170 loc) · 8.06 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" ng-app="simplydoApp"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Simply Do</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet" type="text/css">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="styles/83b98656.main.css">
</head>
<body ng-controller="MainCtrl">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!--[if lt IE 9]>
<script src="bower_components/es5-shim/es5-shim.js"></script>
<script src="bower_components/json3/lib/json3.min.js"></script>
<![endif]-->
<!-- Add your site or application content here -->
<div class="header">
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="navigation-element">Simply Do</div>
</div>
<div class="col-sm-8">
<div class="navigation">
<a href="mailto:[email protected]" class="navigation-element" data-uv-trigger=""><i class="icon-contact"></i> Contact</a>
<a href="http://twitter.com/simplydothat" class="navigation-element" target="new"><i class="icon-twitter"></i> Twitter <i class="icon-right"></i></a>
<a href="http://blog.simplydo.com" class="navigation-element" target="new"><i class="icon-blog"></i> Blog <i class="icon-right"></i></a>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 logo-container">
<i class="icon-sd-logo"></i>
</div>
</div>
</div>
</div>
<div class="content">
<div class="container">
<div class="row" ng-show="false">
<div class="col-xs-6 col-sm-4 col-sm-offset-8 col-md-3 col-md-offset-9">
<div class="input-group">
<input type="text" ng-model="searchBox" class="form-control" placeholder="Filter products..
.">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6 col-sm-4 col-md-3" ng-repeat="product in products | filter:searchBox">
<a class="product-tile" href="{{product.url}}" target="new">
<i class="icon-{{product.id}} product-icon"></i>
<div class="product-label">{{product.label}}</div>
</a>
</div>
</div>
</div>
</div>
<div class="footer-section">
<div class="container">
<div clas="row">
<div class="col-md-4 col-sm-4">
<p class="copy-right-notice">
© 2012 - {{currentYear()}} Simply Do LLC.<br>All rights reserved.
</p>
<p>
Created by <a href="http://kohlhofer.com" target="new">Alexander Kohlhofer</a>
</p>
</div>
<div class="col-sm-7 col-sm-offset-1 col-md-6 col-md-offset-2">
<p>Built with:</p>
<div class="row">
<div class="col-sm-4 col-xs-6 footer-kudos">
<a href="http://getbootstrap.com/" target="new" class="footer-kudos-link">
Bootstrap 3
</a>
<span class="footer-kudos-link-tagline">Powerful mobile first front-end framework</span>
</div>
<div class="col-sm-4 col-xs-6 footer-kudos">
<a href="http://fontastic.me/" target="new" class="footer-kudos-link">
Fontastic
</a>
<span class="footer-kudos-link-tagline">Join the Icon Fonts Revolution</span>
</div>
<div class="col-sm-4 col-xs-6 footer-kudos">
<a href="http://angularjs.org/" target="new" class="footer-kudos-link">
AngularJS 1.2
</a>
<span class="footer-kudos-link-tagline">HTML enhanced for web apps</span>
</div>
<div class="col-sm-4 col-xs-6 footer-kudos">
<a href="http://yeoman.io/" target="new" class="footer-kudos-link">
Yeoman
</a>
<span class="footer-kudos-link-tagline">Modern workflows for modern webapps</span>
</div>
<div class="col-sm-4 col-xs-6 footer-kudos">
<a href="http://github.com/" target="new" class="footer-kudos-link">
Github
</a>
<span class="footer-kudos-link-tagline">Build software better, together</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID -->
<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-29523960-1');
ga('send', 'pageview');
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="scripts/491c175a.plugins.js"></script>
<script src="scripts/ba83b5a2.modules.js"></script>
<script src="scripts/5f7c4f3a.scripts.js"></script>
<script>
// Include the UserVoice JavaScript SDK (only needed once on a page)
UserVoice=window.UserVoice||[];(function(){var uv=document.createElement('script');uv.type='text/javascript';uv.async=true;uv.src='//widget.uservoice.com/24oEv58YxGW9DZwh3xuCg.js';var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(uv,s)})();
//
// UserVoice Javascript SDK developer documentation:
// https://www.uservoice.com/o/javascript-sdk
//
// Set colors
UserVoice.push(['set', {
accent_color: '#448dd6',
trigger_color: 'white',
trigger_background_color: '#448dd6'
}]);
// Identify the user and pass traits
// To enable, replace sample data with actual user traits and uncomment the line
UserVoice.push(['identify', {
//email: '[email protected]', // User’s email address
//name: 'John Doe', // User’s real name
//created_at: 1364406966, // Unix timestamp for the date the user signed up
//id: 123, // Optional: Unique id of the user (if set, this should not change)
//type: 'Owner', // Optional: segment your users by type
//account: {
// id: 123, // Optional: associate multiple users with a single account
// name: 'Acme, Co.', // Account name
// created_at: 1364406966, // Unix timestamp for the date the account was created
// monthly_rate: 9.99, // Decimal; monthly rate of the account
// ltv: 1495.00, // Decimal; lifetime value of the account
// plan: 'Enhanced' // Plan name for the account
//}
}]);
// Add default trigger to the bottom-right corner of the window:
UserVoice.push(['addTrigger', { mode: 'contact', trigger_position: 'bottom-right' }]);
// Or, use your own custom trigger:
//UserVoice.push(['addTrigger', '#id', { mode: 'contact' }]);
// Autoprompt for Satisfaction and SmartVote (only displayed under certain conditions)
UserVoice.push(['autoprompt', {}]);
</script>
</body>
</html>