- Architecture MVC avec framework maison d6 - Modules : devis, clients, marchés, SAP - Documentation initiale (README et TODO) - Configuration Composer avec dépendances 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
711 B
PHP
35 lines
711 B
PHP
<!DOCTYPE html>
|
|
<HTML lang="fr">
|
|
<head>
|
|
<?php
|
|
require_once BLOCKROOT.DS.'meta-css-labs.php';
|
|
if ($metacss != "") { echo $metacss; }
|
|
?>
|
|
</head>
|
|
<body class="userlogin">
|
|
<div class="container">
|
|
<div class="row">
|
|
<?php if ($barre != "") { ?>
|
|
<div class="col-md-3">
|
|
<?php echo $barre; ?>
|
|
</div>
|
|
<div class="col-md-9">
|
|
<?php echo $content; ?>
|
|
</div>
|
|
<?php } else { ?>
|
|
<div class="col-md-12">
|
|
<?php echo $content; ?>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<?php
|
|
echo $modal;
|
|
require 'blocks/footer.php';
|
|
?>
|
|
</div>
|
|
<?php
|
|
require_once BLOCKROOT.DS.'footer-script-labs.php';
|
|
echo $jscript;
|
|
?>
|
|
</body>
|
|
</html>
|