-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
83 lines (72 loc) · 3.12 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/league.css">
<link rel="stylesheet" href="css/devoxx-france-2017.css">
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css">
<link rel="import" href="./chapters/01-intro.html" role="slide">
<link rel="import" href="./chapters/02-speakers.html" role="slide">
<link rel="import" href="./chapters/03-recrutement.html" role="slide">
<link rel="import" href="./chapters/04-carriere.html" role="slide">
<link rel="import" href="./chapters/05-environnement.html" role="slide">
<link rel="import" href="./chapters/06-orga-travail.html" role="slide">
<link rel="import" href="./chapters/07-software-craftsmanship.html" role="slide">
<link rel="import" href="./chapters/08-radar-techno.html" role="slide">
<link rel="import" href="./chapters/09-valeur.html" role="slide">
<link rel="import" href="./chapters/10-communautes.html" role="slide">
<link rel="import" href="./chapters/11-open-source.html" role="slide">
<link rel="import" href="./chapters/12-evenements.html" role="slide">
<link rel="import" href="./chapters/13-conclusion.html" role="slide">
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<title>10 méthodes pour rendre heureux le développeur en entreprise<br>la 7ème va vous étonner !</title>
</head>
<body>
<div class="reveal">
<div class="slides" id="slides">
</div>
<div class="footer">
<p>
<i class="fa fa-twitter"></i> @cyril_lakech | @romaintaz
</p>
<div class="company-logo">
<img src="images/axa-logo.png" alt="AXA">
<img src="images/societe-generale-logo.png" alt="Société Générale">
</div>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="lib/js/webcomponents-lite.js"></script>
<script src="js/reveal.js"></script>
<script>
function initiliazeReveal() {
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
slideNumber: true,
transition: 'convex', // 'slide', // none/fade/slide/convex/concave/zoom
dependencies: [
{ src: 'js/notes/notes.js', async: true }
]
});
}
</script>
<script src="js/presentation.js"></script>
<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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-34711882-4', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>