This repository has been archived by the owner on Oct 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
97 lines (81 loc) · 5.3 KB
/
index.php
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
<!DOCTYPE html>
<?php
define('IMAGES_PATH', realpath(dirname(__FILE__) . '/images'));
define('BACKGROUND_PATH', realpath(IMAGES_PATH . '/background') . DIRECTORY_SEPARATOR);
define('BENJ_PATH', realpath(IMAGES_PATH . '/benj') . DIRECTORY_SEPARATOR);
$backgrounds = scandir(BACKGROUND_PATH);
$random_bgd = mt_rand(2, count($backgrounds) - 1);
$color_bgd = substr($backgrounds[$random_bgd], -5, 1); // Black or White?
$b64_bgd = base64_encode(file_get_contents(BACKGROUND_PATH . $backgrounds[$random_bgd]));
$benjs = scandir(BENJ_PATH);
$random_bnj = mt_rand(1, (count($benjs) - 2) / 6); // How many different logotypes?
?>
<!--[if lt IE 7 ]> <html lang="fr" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7 ]> <html lang="fr" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8 ]> <html lang="fr" class=" lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="fr" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Benjamin Menant, chef de projet Web et multimédia</title>
<meta name="description" content="Benjamin Menant, Chef de projet Web et Multimédia : conception, production, écriture audiovisuelle interactive, Web et multimédia. CV, blog, contact, twitter…" />
<meta name="description" lang="en" content="Benjamin Menant is a Web & Multimedia Project Manager : design & production, audiovisual & interactive writting, Web & multimedia. Résumé, blog, contact, twitter…" />
<meta name="keywords" content="Benjamin Menant, Chef de projet, Web, Multimédia" />
<meta name="keywords" lang="en" content="Benjamin Menant, Project Manager, Web, Multimedia" />
<meta name="author" content="Benjamin Menant" />
<meta name="viewport" content="width=device-width">
<link rel="openid.server" href="http://www.myopenid.com/server" />
<link rel="openid.delegate" href="http://bmenant.myopenid.com/" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<link rel="stylesheet" href="css/style.css">
<script src="js/vendor/modernizr.js"></script>
</head>
<body class="couleur-fond-<?php echo $color_bgd; ?>">
<!--[if lt IE 7]>
<p lang="en" class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
<p class="chromeframe">Vous utilisez un navigateur ancien. <a href="http://browsehappy.com/">Mettez-le à jour</a> ou <a href="http://www.google.com/chromeframe/?redirect=true">utilisez Google Chrome Frame</a> pour bénéficier d’une navigation plus agréable et plus sûre.</p>
<![endif]-->
<div class="background" style="background-image: url('data:image/jpg;base64,<?php echo $b64_bgd; ?>');"> </div>
<div class="container">
<h1 class="ir logo-<?php echo $random_bnj;?>">Benj’</h1>
<section class="main">
<h2>Chef de projet Web et multimédia</h2>
<ul class="clearfix">
<li><a class="mail" href="mailto:[email protected]" title="[email protected]">Courriel</a></li>
<li><a href="http://blog.menant-benjamin.fr/">Blog</a></li>
<li><a href="http://twitter.com/bmenant" title="@bmenant">Twitter</a></li>
<li><a href="/bmenant-cv.pdf" title="Curriculum Vitæ au format PDF">CV</a></li>
<!--<li><a href="http://fr.viadeo.com/fr/profile/benjamin.menant">Viadeo</a></li>-->
<li><a href="http://fr.linkedin.com/in/bmenant">LinkedIn</a></li>
<!--<li><a href="http://www.diigo.com/user/bmenant" title="Plein d’autres liens"><span>Diigo</span></a></li>-->
</ul>
</section>
<footer>
<ul>
<li>Toutes les images et photographies de ce site sont les créations de Benjamin Menant et sont publiées sous licence
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons by-sa-nc</a><span class="ponctuation-haute">;</span></li>
<li>La fonte <cite class="font">Bizmeud</cite> est la création de
<a title="Bizmeud, chez Velvetyne Type Foundry" href="http://www.velvetyne.fr#bizmeud">Quentin Bodin et Jil Dodin</a><span class="ponctuation-haute">;</span></li>
<li>Cette page est hébergée par <a href="http://www.sivit.fr/fr/contacts.php" title="Contacter l’hébergeur.">Sivit</a>.
Peut présenter des traces d’arachides et des exuvies d’acquarien.</li>
</ul>
</footer>
</div> <!--! end of #container -->
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://stats.menant-benjamin.fr/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 3]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="http://stats.menant-benjamin.fr/piwik.php?idsite=3" style="border:0;" alt="" /></p></noscript>
<!--! End Piwik Tracking Code -->
</body>
</html>