Site du proximo, utilisé pour gérer le stock.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 545B

12345678910111213141516171819202122232425
  1. <?php
  2. ob_start();
  3. ?>
  4. <div id="headerJumbotron" class="jumbotron text-center d-flex">
  5. <div id="headerTitleContainer">
  6. <h1 id="headerTitle">Proximo</h1>
  7. <h2 id="headerSubTitle">La supérette de l'INSA</h2>
  8. </div>
  9. </div>
  10. <?php
  11. $header = ob_get_clean();
  12. ob_start();
  13. ?>
  14. <div class="container">
  15. <h1 class="text-center">Coucou</h1>
  16. <p class="text-center">Ceci est du texte</p>
  17. </div>
  18. <?php
  19. $pageContent = ob_get_clean();
  20. $pageTitle = "Accueil";
  21. $relativePath = "";
  22. include($relativePath . "includes/template.php");
  23. ?>