site-accueil-insa/downloads.php

33 lines
No EOL
1.3 KiB
PHP
Executable file

<?php
ob_start(); // Start reading html
?>
<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>
<section>
<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>
<a href="assets/pdf/Plaquette-INSA-2021-Promo-59.pdf" class="link">La plaquette</a>
</li>
<li>
<a href="assets/pdf/Fiche-Parrainage.pdf" class="link">La fiche de parrainage</a> (<a href="#" class="link">Godfather/Godmother form</a>)
</li>
<li>
<a href="assets/pdf/Droit-Image.pdf" class="link">La charte de droit à l'image</a> (<a href="#" class="link">or here</a>,
<a href="assets/pdf/Derechos-de-imagen.pdf" class="link">o aquí</a>)
</li>
</ul>
</section>
</main>
<?php
$infopage = ["", "Telechargements", ob_get_clean(), "", "downloads"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
include("structure/template.php");
?>