161 lines
7.5 KiB
HTML
161 lines
7.5 KiB
HTML
<!DOCTYPE HTML>
|
||
<html lang="fr">
|
||
<head>
|
||
<title>Anael Ginder - Administrateur Systèmes Angers - Portfolio</title>
|
||
<meta name="description" content="Bienvenue sur mon portfolio, vous trouverez sur ce site des informations me concernant, notament mon Curriculum vitae.">
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
<link rel="icon" href="images/icons/favicon.png" type="image/png" />
|
||
<link rel="apple-touch-icon-precomposed" href="images/icons/apple-touch-icon-precomposed.png" />
|
||
<link rel="stylesheet" href="assets/css/main.css" />
|
||
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
|
||
<style>
|
||
body {
|
||
height: 100%;
|
||
background-color: #ffffff;
|
||
background-image: url("images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.15) 5%, rgba(0, 228, 255, 0.15)), url("images/backgrounds/raptor.png");
|
||
background-image: url("images/overlay.png"), -webkit-linear-gradient(60deg, rgba(255, 165, 150, 0.15) 5%, rgba(0, 228, 255, 0.15)), url("images/backgrounds/raptor.png");
|
||
background-image: url("images/overlay.png"), -ms-linear-gradient(60deg, rgba(255, 165, 150, 0.15) 5%, rgba(0, 228, 255, 0.15)), url("images/backgrounds/raptor.png");
|
||
background-image: url("images/overlay.png"), linear-gradient(60deg, rgba(255, 165, 150, 0.15) 5%, rgba(0, 228, 255, 0.15)), url("images/backgrounds/raptor.png");
|
||
background-repeat: repeat, no-repeat, no-repeat;
|
||
background-size: 100px 100px, cover, auto;
|
||
background-position: top left, center, top right;
|
||
background-attachment: fixed, fixed, fixed;
|
||
}
|
||
</style>
|
||
<link rel="stylesheet" href="assets/vertical-timeline/css/style.css" />
|
||
<script src="assets/vertical-timeline/js/modernizr.js"></script>
|
||
<script src="assets/js/jquery.min.js"></script>
|
||
<script>
|
||
var loc = window.location.href+'';
|
||
if (loc.indexOf('http://')==0){
|
||
window.location.href = loc.replace('http://','https://');
|
||
}
|
||
</script>
|
||
</head>
|
||
<body class="is-loading">
|
||
<div id="wrapper">
|
||
<div id="main">
|
||
<header>
|
||
<p><a href="index.html"> < Accueil</a></p>
|
||
</header>
|
||
<hr />
|
||
<h1>Mentions Légales</h1>
|
||
<ul>
|
||
<li>
|
||
Ce site web est hebergé chez OVH.
|
||
</li>
|
||
<li>
|
||
SAS au capital de 10 069 020 € - RCS Lille Métropole 424 761 419 00045
|
||
</li>
|
||
<li>
|
||
Siège social : 2 rue Kellermann - 59100 Roubaix - France
|
||
</li>
|
||
<li>
|
||
Code APE 2620Z N° TVA : FR 22 424 761 419
|
||
</li>
|
||
<li>
|
||
Président : Henryk KLABA
|
||
</li>
|
||
<li>
|
||
Directeur général : Miroslaw KLABA
|
||
</li>
|
||
<li>
|
||
Directeur de la publication : Octave KLABA
|
||
</li>
|
||
<li>
|
||
Directeur général délégué : Octave KLABA
|
||
</li>
|
||
<li>
|
||
Directeur général délégué : Halina KLABA
|
||
</li>
|
||
<li>
|
||
Pour contacter OVH : https://www.ovh.com/fr/support/
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
<footer id="footer">
|
||
<ul class="copyright">
|
||
<li>© Anael Ginder <a href="http://creativecommons.org/publicdomain/zero/1.0/">CC-0</a></li>
|
||
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
|
||
<li><a href="https://git.cyberjinh.fr/anael/portofolio">Sources</a></li>
|
||
<li><a href="legales.html">Mentions Légales</a></li>
|
||
<li><a href="cookies.html">Cookies</a></li>
|
||
</ul>
|
||
</div>
|
||
<script>
|
||
if ('addEventListener' in window) {
|
||
window.addEventListener('load', function() { document.body.className = document.body.className.replace(/\bis-loading\b/, ''); });
|
||
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : '');
|
||
}
|
||
$(document).ready(function() {
|
||
$('#work').hide();
|
||
$('#skills').hide();
|
||
$('#resume').hide();
|
||
var hash = window.location.hash.substring(1);
|
||
switch (hash) {
|
||
case 'work':
|
||
toggleWork();
|
||
break;
|
||
case 'skills':
|
||
toggleSkills();
|
||
break;
|
||
case 'resume':
|
||
toggleResume();
|
||
break;
|
||
}
|
||
});
|
||
function toggleWork() {
|
||
if($('#work:hidden').length !== 0) {
|
||
$('#work').fadeIn();
|
||
$('#skills').hide();
|
||
$('#resume').hide();
|
||
} else {
|
||
$('#work').fadeOut();
|
||
}
|
||
}
|
||
function toggleSkills() {
|
||
if($('#skills:hidden').length !== 0) {
|
||
$('#skills ul li').removeClass('transform');
|
||
$('#skills').fadeIn();
|
||
$('#skills ul li').addClass('transform');
|
||
$('#work').hide();
|
||
$('#resume').hide();
|
||
} else {
|
||
$('#skills').fadeOut();
|
||
}
|
||
}
|
||
function toggleResume() {
|
||
if($('#resume:hidden').length !== 0) {
|
||
$('#resume').fadeIn();
|
||
$('#work').hide();
|
||
$('#skills').hide();
|
||
var timelineBlocks = $('.cd-timeline-block'),
|
||
offset = 1;
|
||
hideBlocks(timelineBlocks, offset);
|
||
$(window).on('scroll', function(){
|
||
(!window.requestAnimationFrame)
|
||
? setTimeout(function(){ showBlocks(timelineBlocks, offset); }, 100)
|
||
: window.requestAnimationFrame(function(){ showBlocks(timelineBlocks, offset); });
|
||
});
|
||
|
||
function hideBlocks(blocks, offset) {
|
||
blocks.each(function(){
|
||
( $(this).offset().top > $(window).scrollTop()+$(window).height()*offset ) && $(this).find('.cd-timeline-img, .cd-timeline-content').addClass('is-hidden');
|
||
});
|
||
}
|
||
|
||
function showBlocks(blocks, offset) {
|
||
blocks.each(function(){
|
||
( $(this).offset().top <= $(window).scrollTop()+$(window).height()*offset && $(this).find('.cd-timeline-img').hasClass('is-hidden') ) && $(this).find('.cd-timeline-img, .cd-timeline-content').removeClass('is-hidden').addClass('bounce-in');
|
||
});
|
||
}
|
||
} else {
|
||
$('#resume').fadeOut();
|
||
}
|
||
}
|
||
</script>
|
||
|
||
</body>
|
||
</html>
|