forked from vergnet/site-accueil-insa
23 lines
No EOL
831 B
PHP
23 lines
No EOL
831 B
PHP
<?php
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<main>
|
|
<section>
|
|
<div id="boxjaune">
|
|
<div id="circle_l" class="circle"></div>
|
|
<div id="circle_r" class="circle"></div>
|
|
<div id="title_in_box">
|
|
<a href="https://amicale-insat.fr/clubs" target="_NEWWWWW" class="link_in_yellow_box">amicale-insat.fr/clubs</a>
|
|
</div>
|
|
<div id="circle_l" class="circle"></div>
|
|
<div id="circle_r" class="circle"></div>
|
|
</div>
|
|
</section>
|
|
<section>
|
|
<iframe src="https://amicale-insat.fr/clubs" class="iframe_amicale" allow="fullscreen" scrolling="auto"></iframe>
|
|
</section>
|
|
</main>
|
|
<?php
|
|
$infopage = ["", "Les clubs", ob_get_clean(), "", "clubs"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
|
|
include("structure/template.php");
|
|
?>
|