debug et améliorations de la TL

This commit is contained in:
Valentin
2023-08-17 02:20:42 +02:00
parent 56e1867e19
commit 7c5625f363
22 changed files with 447 additions and 233 deletions
+5 -5
View File
@@ -2,17 +2,17 @@
@section('content')
<div class="fixed left-0 top-48 h-2/3 w-8 flex flex-col-reverse" id="timeline_container"></div>
<div class="fixed left-0 w-8 flex flex-col-reverse z-1" id="timeline_container"></div>
<svg class="fixed left-0 top-48 h-4 -mt-1 w-10 fill-jlg-white cursor-grab active:cursor-grabbing" id="cursor">
<svg class="fixed left-0 h-4 w-10 mt-[-4px] fill-jlg-white cursor-grab active:cursor-grabbing" id="cursor">
<polygon points="32,4 32,6 40,10 40,0" />
<rect width="32" height="2" y="4" />
</svg>
<table class="w-full bg-jlg-dark-blue flex justify-center">
<table class="w-full bg-jlg-dark-blue flex justify-center mt-[70px] z-0 pl-10 lg:pl-[10px]">
<thead>
<tr class="border-jlg-white border-b h-64 top-0 w-full lg:w-2/3 fixed flex items-stretch justify-around text-left lg:text-xl uppercase bg-jlg-dark-blue">
<tr class="border-jlg-white border-b h-64 top-0 w-full lg:w-2/3 fixed z-0 flex items-stretch justify-around text-left uppercase bg-jlg-dark-blue">
<th class="flex items-end justify-start"></th>
<th class="flex items-end justify-start pb-4">Images</th>
<th class="flex items-end justify-start pb-4">Voix Off et In</th>
@@ -34,7 +34,7 @@
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post();
if (get_post_meta(get_the_ID(), 'Minutage', true)) : ?>
<tr class="border-jlg-white border-b font-authentic-60 w-full flex flex-row py-6 isContentPart">
<tr class="border-jlg-light-white border-b font-authentic-60 w-full flex flex-row py-6 isContentPart">
<td class="block text-sm pl-0 pr-6">{{ get_post_meta(get_the_ID(), 'Minutage', true) }}</td>
<td class="block pl-0 pr-6">{{ get_post_meta(get_the_ID(), 'Images', true) }}</td>
<td class="block pl-0 pr-6">{{ get_post_meta(get_the_ID(), 'VoixOffIn', true) }}</td>
+5 -5
View File
@@ -1,4 +1,4 @@
<footer class="fixed w-full h-1/12 py-4 bottom-0 bg-jlg-dark-blue border-t border-jlg-light-white flex justify-between">
<footer class="fixed w-full h-[8vh] py-4 bottom-0 bg-jlg-dark-blue border-t border-jlg-light-white flex justify-between">
<!-- @php(dynamic_sidebar('sidebar-footer'))-->
<div class="text-sm">
<button class="px-4 py-2 rounded-md ml-6 underline underline-offset-8 hover:underline-offset-4 active:underline-offset-8">À PROPOS</button>
@@ -6,16 +6,16 @@
</div>
<div class="mr-6 flex items-center">
<a href="https://www.thalim.cnrs.fr/?lang=fr" target="_blank" class="w-12 mr-4">
<img class="w-full h-auto" alt="thalim" src="@asset('images/logos/thalim.png')">
<img class="w-full h-auto" alt="thalim" src="<?= get_template_directory_uri(); ?>/resources/assets/images/logos/thalim.png">
</a>
<a href="http://www.univ-paris3.fr/" target="_blank" class="w-24 mr-4">
<img class="w-full h-auto" alt="sorbonne" src="@asset('images/logos/sorbonne.png')">
<img class="w-full h-auto" alt="sorbonne" src="<?= get_template_directory_uri(); ?>/resources/assets/images/logos/sorbonne.png">
</a>
<a href="https://www.cnrs.fr/fr" target="_blank" class="w-12 mr-4">
<img class="w-full h-auto" alt="cnrs" src="@asset('images/logos/cnrs.png')">
<img class="w-full h-auto" alt="cnrs" src="<?= get_template_directory_uri(); ?>/resources/assets/images/logos/cnrs.png">
</a>
<a href="https://www.huma-num.fr/" target="_blank" class="w-12">
<img class="w-full h-auto" alt="humanum" src="@asset('images/logos/huma-num.png')">
<img class="w-full h-auto" alt="humanum" src="<?= get_template_directory_uri(); ?>/resources/assets/images/logos/huma-num.png">
</a>
</div>
</footer>