zeg1jeux/farfetched.php

30 lines
490 B
PHP
Raw Normal View History

2022-10-31 20:12:51 +01:00
<?php
require_once('config.php');
require_once('lib/Gchange.class.php');
$gchange = new Gchange();
$javascripts['header'][] = 'lib/js/farfetched.js';
2022-11-18 00:42:33 +01:00
$bodyIds = 'farfetched';
2022-10-31 20:12:51 +01:00
include_once('header.php');
?>
2022-11-18 00:42:33 +01:00
<section id="shippable">
<h2>Envoi possible</h2>
<ul id="shippable-offers" class="offers-list">
</ul>
</section>
<section id="immaterial">
<h2>Offres immatérielles</h2>
<ul id="immaterial-offers" class="offers-list">
</ul>
</section>
2022-10-31 20:12:51 +01:00
<?php
include_once('footer.php');