site-accueil-insa/includes/com_template.php

39 lines
715 B
PHP
Raw Normal View History

<div class="com-container">
<h3 id="<?= $comId ?>"><?= $comTitle ?></h3>
<table id="table-coms">
<tr>
<td class="com-description"><?= $comDescription ?></td>
</tr>
2019-06-27 22:27:47 +02:00
2018-05-25 08:33:39 +02:00
<tr>
2019-06-27 22:27:47 +02:00
<td><br></td>
2018-05-25 08:33:39 +02:00
</tr>
2019-06-27 22:27:47 +02:00
<tr>
<td><?= $comRespo ?></td>
2019-06-27 22:27:47 +02:00
</tr>
2018-05-25 08:33:39 +02:00
<tr>
<td><?= $comRespoId ?></td>
</tr>
2018-05-25 08:33:39 +02:00
</tr>
2019-06-27 22:27:47 +02:00
<?php if ($comRespo2 != ""): ?>
<tr>
<td><br></td>
</tr>
<tr>
<td><?= $comRespo2 ?></td>
</tr>
<tr>
<td><?= $comRespo2Id ?></td>
</tr>
2019-06-27 22:27:47 +02:00
<?php endif; ?>
2019-06-27 22:27:47 +02:00
</table>
</div>