forked from nicolas-raoul/Anki-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared_decks_template.html
46 lines (40 loc) · 1.43 KB
/
shared_decks_template.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
<html>
<head>
<link rel="stylesheet" href="/static/anki.css?2011-01-30" type="text/css" media="screen" />
<link media="only screen and (max-device-width: 480px)" href="/static/iphone.css" type= "text/css" rel="stylesheet" />
<script src="/static/js/jquery-1.6.4.min.js" type="text/javascript">
</script>
<script src="/static/js/jquery.hotkeys.js" type="text/javascript">
</script>
<script>
$(function () { window.scrollTo(0, 1) } );
</script>
<style>::style::</style>
</head>
<body class="mobile">
<script type="text/javascript">
$(document).bind('keyup', 'd', function(){
location.href="/decks/";});
$(document).bind('keyup', 's', function(){
location.href="/study/";});
$(document).bind('keyup', 'a', function(){
location.href="/edit/";});
$(document).bind('keyup', 'b', function(){
location.href="/search/";});
</script>
<div id="contentOuter">
::content::
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-4621885-5']);
_gaq.push(['_setDomainName', '.ankiweb.net']);
_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>