New file |
0,0 → 1,79 |
<!DOCTYPE html> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head> |
<title>Téléchargement d'une image du cel</title> |
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/> |
<meta http-equiv="Content-style-type" content="text/css" /> |
<meta http-equiv="Content-script-type" content="text/javascript" /> |
<meta http-equiv="Content-language" content="fr" /> |
|
<meta name="revisit-after" content="15 days" /> |
<meta name="robots" content="index,follow" /> |
<meta name="author" content="Aurélien Peronnet" /> |
<meta name="keywords" content="Tela Botanica, CEL" /> |
<meta name="description" content="Widget de téléchargement des images du carnet en ligne" /> |
|
<!-- Favicones --> |
<link rel="shortcut icon" type="image/x-icon" href="http://www.tela-botanica.org/favicon.ico" /> |
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> |
|
<!-- CSS --> |
<link href="http://www.tela-botanica.org/commun/jquery/jquery-ui/1.8.18/css/smoothness/jquery-ui-1.8.18.custom.css" rel="stylesheet" type="text/css" media="screen" /> |
<link href="http://www.tela-botanica.org/commun/bootstrap/2.0.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" media="screen" /> |
<link href="http://www.tela-botanica.org/commun/bootstrap/2.0.2/css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css" media="screen" /> |
<link href="http://www.tela-botanica.org/commun/jquery/jquery-ui/1.8.17/css/ui-darkness/jquery-ui-1.8.17.custom.css" rel="stylesheet" type="text/css" media="screen" /> |
<link href="<?= $url_base; ?>modules/telechargement/squelettes/css/telechargement.css" rel="stylesheet" type="text/css" media="screen" /> |
|
<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/1.7.1/jquery-1.7.1.js"></script> |
<script type="text/javascript" src="<?= $url_base; ?>modules/telechargement/squelettes/js/telechargement.js" ></script> |
</head> |
|
<body> |
<div id="zone-appli" class="container"> |
<h2 class="titre_section">Téléchargement d'une image</h2> |
<div class="image_exemple"> |
<a href="<?= $url_image_originale ?>" target="_blank"><img src="<?= $url_image_exemple ?>" /></a> |
<div class="image_infos"> |
<ul class="liste_infos"> |
<li>Titre original : <?= $informations_image['nom_original'] ?></li> |
<li>Téléversée par : <?= $auteur_fmt ?></li> |
<li>Le : <?= $date_televersement ?></li> |
<li>Licence : <a target="_blank" href="http://creativecommons.org/licenses/by-sa/2.0/fr/">CC BY-SA</a></li> |
<li class="sans_padding_bt">Attribution : <input class="champ_selection_texte attribution" value="<?= $attribution ?>"> |
</li> |
<li class="sans_padding_bt">Lien vers cette image : <input class="champ_selection_texte lien_image_originale" value="<?= $url_image_originale ?>"></li> |
</ul> |
</div> |
</div> |
<hr class="nettoyage" /> |
<ul> |
<?php foreach($formats as $format) { ?> |
<?php if($format != "O") { ?> |
<a href="<?= sprintf($base_url_telechargement, $format); ?>" title="<?= $resolutions[$format]['notes']; ?>"> |
<?= $resolutions[$format]['hauteur'];?>px <?= Telechargement::obtenirLegendeFormatSimplifiee($format);?></a> |
<span class="separation"> | </span> |
<?php } else { ?> |
<a href="<?= sprintf($base_url_telechargement, $format); ?>" title="<?= $resolutions[$format]['notes']; ?>"> |
Format original (<?= $resolution_originale; ?>)</a> |
<?php } ?> |
<?php } ?> |
</ul> |
</div> |
<!-- Stats : Google Analytics--> |
<script type="text/javascript"> |
//<![CDATA[ |
var _gaq = _gaq || []; |
_gaq.push(['_setAccount', 'UA-20092557-1']); |
_gaq.push(['_trackPageview']); |
|
(function() { |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
})(); |
//]]> |
</script> |
</body> |
</html> |