13 lines
170 B
PHP
13 lines
170 B
PHP
<?php
|
|
|
|
function main() {
|
|
$g = new GalerieIndex();
|
|
Debug::afficher();
|
|
|
|
$p = $g->rendu();
|
|
echo "<pre>";
|
|
echo htmlspecialchars($p->to_XHTML_5());
|
|
echo "</pre>";
|
|
}
|
|
|
|
?>
|