|
@@ -14,14 +14,14 @@
|
|
|
}
|
|
|
</style>
|
|
|
|
|
|
- <table >
|
|
|
+ <table class="table-fixed">
|
|
|
<thead>
|
|
|
- <tr>
|
|
|
- <th ></th>
|
|
|
- <th>Images</th>
|
|
|
- <th>Voix Off et In</th>
|
|
|
- <th>Bande Son</th>
|
|
|
- <th>Ecrits</th>
|
|
|
+ <tr class="border-slate-50 w-4/5 h-64 top-24 fixed flex items-stretch justify-around text-center">
|
|
|
+ <th class="bg-slate-900 w-1/5 flex items-end justify-start"></th>
|
|
|
+ <th class="bg-slate-900 w-1/5 flex items-end justify-start">Images</th>
|
|
|
+ <th class="bg-slate-900 w-1/5 flex items-end justify-start">Voix Off et In</th>
|
|
|
+ <th class="bg-slate-900 w-1/5 flex items-end justify-start">Bande Son</th>
|
|
|
+ <th class="bg-slate-900 w-1/5 flex items-end justify-start">Ecrits</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
@@ -38,12 +38,12 @@
|
|
|
if ($query->have_posts()) :
|
|
|
while ($query->have_posts()) : $query->the_post();
|
|
|
?>
|
|
|
- <tr>
|
|
|
- <td >{{ get_post_meta(get_the_ID(), 'Minutage', true) }}</td>
|
|
|
- <td>{{ get_post_meta(get_the_ID(), 'Images', true) }}</td>
|
|
|
- <td>{{ get_post_meta(get_the_ID(), 'VoixOffIn', true) }}</td>
|
|
|
- <td>{{ get_post_meta(get_the_ID(), 'BandeSon', true) }}</td>
|
|
|
- <td>{{ get_post_meta(get_the_ID(), 'Ecrits', true) }}</td>
|
|
|
+ <tr class="border-slate-50">
|
|
|
+ <td class="w-1/5 bg-red-400 pr-4 pt-1 pb-8 text-right">{{ get_post_meta(get_the_ID(), 'Minutage', true) }}</td>
|
|
|
+ <td class="w-1/5 py-8">{{ get_post_meta(get_the_ID(), 'Images', true) }}</td>
|
|
|
+ <td class="w-1/5 py-8">{{ get_post_meta(get_the_ID(), 'VoixOffIn', true) }}</td>
|
|
|
+ <td class="w-1/5 py-8">{{ get_post_meta(get_the_ID(), 'BandeSon', true) }}</td>
|
|
|
+ <td class="w-1/5 py-8">{{ get_post_meta(get_the_ID(), 'Ecrits', true) }}</td>
|
|
|
</tr>
|
|
|
<?php
|
|
|
endwhile;
|