2016-06-24 11:35:09 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* /!\ ne pas oublier d'ajouter ../ si vous êtes sous la racine /!\
|
|
|
|
*/
|
|
|
|
include ("lib/i18n.php");
|
|
|
|
?>
|
|
|
|
|
2016-06-24 11:34:14 +02:00
|
|
|
<?php $notallow = array("78.231.79.93");
|
|
|
|
if(in_array($_SERVER['REMOTE_ADDR'], $notallow)) {
|
|
|
|
header("Location: http://www.expolibre.org/expolibre.html");
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
2016-06-24 11:12:10 +02:00
|
|
|
<!DOCTYPE html>
|
2016-09-13 16:35:58 +02:00
|
|
|
<!--[if IE 9]><html class="lt-ie10" lang="fr" > <![endif]-->
|
2016-06-24 11:37:36 +02:00
|
|
|
<html class="no-js" lang="fr" >
|
2016-06-24 11:12:10 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="Author" content="Antoine Bardelli, April.org"/>
|
|
|
|
<meta name="geo.region" content="FR" />
|
|
|
|
<meta name="Description" content="Expolibre, l'exposition itinérante expliquant les logiciels libres au grand public."/>
|
|
|
|
<meta name="Keywords" content="expolibre, expolibre 3, expolibree III, exposition logiciels libres, exposition libre, logiciels libres, logiciels open source, libre, sensibilisation, formats ouverts, informatique libre, exposition gratuite, exposition informatique, April.org, April"/>
|
|
|
|
<title>Exposition logiciels libres</title>
|
|
|
|
<!-- css -->
|
|
|
|
<link rel="stylesheet" href="css/foundation.css"><link rel="stylesheet" href="css/expolibre-tangram.css">
|
|
|
|
<!-- script -->
|
|
|
|
<script src="js/vendor/modernizr.js"></script>
|
|
|
|
<!-- font -->
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- body content here -->
|
|
|
|
<!-- top bar -->
|
|
|
|
|
|
|
|
<?php include ("banniere.php"); ?>
|
|
|
|
|
|
|
|
<!-- fin nav -->
|
|
|
|
|
|
|
|
<?php include ("home-contenu.php"); ?>
|
|
|
|
|
|
|
|
<!-- footer -->
|
|
|
|
|
|
|
|
<?php include ("footer.php"); ?>
|
|
|
|
|
|
|
|
<!-- fin footer -->
|
|
|
|
|
|
|
|
<!-- fin body -->
|
|
|
|
|
|
|
|
<?php include ("script-footer.php"); ?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|