Base formation angular+amélioration layout formations JS

This commit is contained in:
2015-04-06 17:50:08 +02:00
committed by Benjamin Bohard
parent 60d10200f7
commit 7cbddf946d
29 changed files with 800 additions and 25 deletions

View File

@ -3,23 +3,12 @@
<head>
<title>Cadoles - Formation Javascript</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
body {
font-family: 'Droid Sans', 'Ubuntu Sans', 'sans-serif';
}
h1, h2, h3 {
font-family: 'Caviar Dream', 'Droid Sans', 'Ubuntu Sans', 'sans-serif';
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono', monospace; }
</style>
<link href="../cadoles-theme.css" rel="stylesheet">
</head>
<body>
<script src="../bower_components/remark/out/remark.js"></script>
<script type="text/javascript">
var slides = [
var SLIDES = [
'cover',
'plan',
'historique',
@ -71,19 +60,6 @@
'licence'
];
var slideshow = remark.create({
source: slides.map(fetchSlide).join('\n---\n'),
highlightStyle: 'github',
highlightLanguage: 'javascript'
});
function fetchSlide(slideName) {
var req = new XMLHttpRequest();
req.open('GET', slideName+'.md', false);
req.send();
return req.responseText.replace(/\r\n/g, '\n');
};
</script>
<script id="cadoles-ascii" type="text/ascii-art">
___ _ _
@ -101,5 +77,7 @@
console.log('%c '+asciiText, 'color: #2A80AF;');
}());
</script>
<script src="../bower_components/remark/out/remark.js"></script>
<script src="../slideshow-bootstrap.js"></script>
</body>
</html>