site-accueil-insa/downloads.php

33 lines
1.5 KiB
PHP
Raw Normal View History

2020-09-19 16:08:07 +02:00
<?php
ob_start(); // Start reading html
?>
2022-06-10 01:41:26 +02:00
<main>
<div class="box-jaune">
<span class="corners corners-top"></span>
<span class="corners corners-bottom"></span>
<div class="title">Les Téléchargements</div>
<span class="circles circles-top"></span>
<span class="circles circles-bottom"></span>
</div>
2022-06-20 19:05:46 +02:00
<section align="left">
2022-06-10 01:41:26 +02:00
<p>Si jamais t'as perdu quelque chose, pas de problèmes ! Tu pourras trouver tout ce dont tu as besoin ici.</p>
<ul>
<li>
2022-06-20 19:05:46 +02:00
<a download="" href="assets/pdf/Plaquette-Promo-60.pdf" class="link">La plaquette</a>
2022-06-10 01:41:26 +02:00
</li>
<li>
2022-06-20 19:05:46 +02:00
<a download="" href="assets/pdf/Fiche-Parrainage.pdf" class="link">La fiche de parrainage</a> (<a download="" href="assets/pdf/Godfather-Godmother-Form.pdf" class="link">Godfather/Godmother form</a>)
2022-06-10 01:41:26 +02:00
</li>
<li>
2022-06-20 19:05:46 +02:00
<a download="" href="assets/pdf/Droit-Image.pdf" class="link">La charte de droit à l'image</a> (<a download="" href="Image-Rigths.pdf" class="link">or here</a>,
<a download="" href="assets/pdf/Derechos-de-imagen.pdf" class="link">o aquí</a>)
2022-06-10 01:41:26 +02:00
</li>
</ul>
</section>
</main>
2020-09-19 16:08:07 +02:00
<?php
2022-01-19 22:26:58 +01:00
$infopage = ["", "Telechargements", ob_get_clean(), "", "downloads"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
include("structure/template.php");
?>