forked from revolunet/JSbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (106 loc) · 5.31 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>JSBooks</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
<meta name="description" content="JSBooks is a showcase of the bests free ebooks about Javascript. Find here the best publications about your favourite programming langage without spending any bucks !">
<meta name="author" content="Revolunet">
<link href='http://fonts.googleapis.com/css?family=PT+Sans+Narrow' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/jsbooks.css" media="all">
<!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->
<link rel="shortcut icon" href="../img/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../img/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../img/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../img/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">
</head>
<body>
<a href="https://github.com/revolunet/JSbooks" class="github"><img src="https://s3.amazonaws.com/github/ribbons/forkme_left_white_ffffff.png" alt="Fork me on GitHub"></a>
<div class="navbar navbar-fixed-top jshead">
<img src="/img/logo_jsbooks.png" alt="javascript tutorials">
<h1>The best free JavaScript resources</h1>
<a href="#" id="infos">?</a>
</div>
<div class="container" id="jsinfos">
<div class="row">
<div class="span6">
<h4> Learn JavaScript for free ! </h4>
<hr>
<p>
Discover the most popular free JavaScript books and improve your skills, thanks to the developers community ! Fork it on GitHub and add any books related to your best programming language :)
</p>
<p>
<i class="icon-star icon-white"></i> Levels are listed by the stars on book cover, from beginner to advanced.<i class="icon-star icon-white"></i>
</p>
<p>
JSbooks will be updated with fresh and updated content out there. Drop your mail below to be notified on each update :
<form action="http://revolunet.us1.list-manage.com/subscribe/post?u=43cbcac99221b1ab80c14a121&id=b8d6f6c192" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank">
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email adress" required>
<input type="submit" value="Subscribe">
</form>
</p>
</div>
<div class="span6">
<h4>About us :</h4>
<hr>
<p>
REVOLUNET is a company specialized in web applications development. <br>
Feel free to contact us by mail for further information: <br>
<a href="mailto:contact@revolunet.com">contact@revolunet.com</a>
</p>
<p>Follow us out there : </p>
<ul>
<li> <a href="https://twitter.com/revolunet"> <img src="img/social_twitter.png" target="_blank" width="24" height="24" alt=""> </a> </li>
<li> <a href="callto:revolunet"> <img src="img/social_skype.png" target="_blank" width="24" height="24" alt=""> </a> </li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row" id="issueswrap">
</div>
</div>
<div class="footer">
<hr>
<a href="http://www.revolunet.com" target="_blank"> <img src="/img/revologo.png" alt="" /> </a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="/js/mustache.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.getJSON('issues.json', function(data) {
var template = $('#booktpl').html();
var html = Mustache.to_html(template, data);
$('#issueswrap').html(html);
});
$('#jsinfos').hide();
$('a.#infos').on('click', function(){
$('#jsinfos').slideToggle();
});
});
</script>
<script id="booktpl" type="text/template">
{{#books}}
<div class="span4 booksection">
<div id="cover" style="background:black url('{{cover}}') no-repeat center;-webkit-background-size:cover;-moz-background-size:cover;background-size:cover;">
</div>
<h2>{{title}}</h2>
<h3><a href="{{authorUrl}}" target="_blank">{{author}}</a></h3>
<p class="level">{{level}}</p>
<p class="description">{{info}}</p>
<p><a class="btn" href="{{url}}">OPEN</a></p>
</div>
{{/books}}
</script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-294393-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</body>
</html>