This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
FunctionProject/views/quote-list.php

32 lines
978 B
PHP
Raw Normal View History

<!-- Config -->
<?php include("../php/config.php");?>
<!-- Header -->
<?php include("../incl/header.php");?>
<!-- Page Content -->
2019-12-28 22:36:09 +01:00
<main class="container-fluid flex-fill">
<div class="container">
<h1><span class="important"><?php echo $title?></span> :</h1>
<p class="pt-3 text-center">
<?php echo $description?> <br>
<span class="totalLengthQuote"></span><br>
<a href="/views/function-views/randomQuote.php">Revenir au générateur de citations/proverbes.</a>
</p>
2019-12-28 22:36:09 +01:00
<table class="table table-bordered mt-5">
<thead>
<tr>
<th class="text-center" scope="col">Source</th>
<th class="text-center" scope="col">Citation/Proverbe</th>
</tr>
</thead>
<tbody class="quote-list text-center">
2019-12-28 22:36:09 +01:00
</tbody>
</table>
</div>
</main>
<!-- Footer -->
<?php include("../incl/footer.php");?>