{"id":83,"date":"2025-05-07T13:11:17","date_gmt":"2025-05-07T11:11:17","guid":{"rendered":"https:\/\/beskilled.eu\/?page_id=83"},"modified":"2026-06-24T03:43:07","modified_gmt":"2026-06-24T01:43:07","slug":"evenements","status":"publish","type":"page","link":"https:\/\/beskilled.eu\/en\/evenements\/","title":{"rendered":"\u00c9v\u00e8nements"},"content":{"rendered":"<h3 class=\"wp-block-heading\">\u00c9v\u00e8nements<\/h3>\n\n\n\n<div style=\"background: linear-gradient(135deg, #1e2a5e, #2a9d8f); color: #fff; padding: 25px; border-radius: 12px; max-width: 500px; margin: 20px auto; font-family: Arial, sans-serif; box-shadow: 0 4px 12px rgba(0,0,0,0.15);\">\n  <h3 style=\"margin-top: 0; border-left: 4px solid #fff; padding-left: 12px; color: #fff;\">\ud83c\udf93 WP3 Module 2 \u2013 Formation de formateurs<\/h3>\n  \n  <div style=\"background: rgba(255,255,255,0.15); padding: 15px; border-radius: 8px; margin: 15px 0; text-align: center;\">\n    <div style=\"font-size: 14px; margin-bottom: 8px; color: #e0f7ff;\">\ud83d\udcc5 D\u00e9but du module :<\/div>\n    <div id=\"countdown-module2\" style=\"font-size: 28px; font-weight: bold; font-family: 'Courier New', monospace; letter-spacing: 2px;\">\n      00 j  00 h  00 m<br>00 s\n    <\/div>\n    <div style=\"font-size: 12px; margin-top: 5px; color: #e0f7ff;\">\n      <span style=\"margin-right: 15px;\">Jours<\/span>\n      <span style=\"margin-right: 15px;\">Heures<\/span>\n      <span style=\"margin-right: 15px;\">Minutes<\/span>\n      <span>Secondes<\/span>\n    <\/div>\n  <\/div>\n\n  <hr style=\"border: none; height: 1px; background: rgba(255,255,255,0.3); margin: 20px 0;\">\n\n  <p style=\"margin: 10px 0; line-height: 1.5;\">\n    <strong>\ud83d\udccc Soft Skills: Implementing Active Learning and Authentic Assessment<\/strong><br>\n    <span style=\"font-size: 13px;\">\ud83d\udc49 Soft Skills : Mettre en \u0153uvre l&rsquo;apprentissage actif et l&rsquo;\u00e9valuation authentique<\/span>\n  <\/p>\n\n  <p style=\"margin: 10px 0; line-height: 1.5;\">\n    \ud83d\udca1 Une formation con\u00e7ue <strong>par et pour les enseignants et formateurs<\/strong>, apportant des m\u00e9thodes innovantes et des outils concrets pour int\u00e9grer et \u00e9valuer les comp\u00e9tences transversales au c\u0153ur de vos cours.\n  <\/p>\n\n  <p style=\"margin: 10px 0;\">\n    <strong>\ud83d\udcc5 Date :<\/strong> 1er juin 2026 \u00e0 09h00<br>\n    <strong>\ud83d\udcda Format :<\/strong> Module 2\/4 \u2013 Parcours en ligne sur <strong>Moodle<\/strong><br>\n    <strong>\ud83c\udfaf Projet :<\/strong> Erasmus+ BeSkilled\n  <\/p>\n\n  <div style=\"background: rgba(0,0,0,0.2); border-radius: 8px; padding: 10px; margin: 15px 0; text-align: center;\">\n    <div style=\"display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;\">\n      <span>\ud83c\uddf2\ud83c\udde6 Universit\u00e9 Sidi Mohamed Ben Abdellah<\/span>\n      <span>\ud83c\uddf2\ud83c\uddf9 L-Universit\u00e0 ta&rsquo; Malta<\/span>\n    <\/div>\n  <\/div>\n\n  <p style=\"margin: 20px 0 0;\">\n    <a href=\"https:\/\/formation.beskilled.eu\/course\/view.php?id=7\" target=\"_blank\" class=\"moodle-btn\" style=\"background-color: #fff; color: #1e2a5e; padding: 10px 18px; border-radius: 6px; text-decoration: none; font-weight: bold; display: inline-block; transition: all 0.3s;\">\n      \ud83d\udd17 Acc\u00e9der \u00e0 la plateforme Moodle\n    <\/a>\n  <\/p>\n<\/div>\n\n<script>\n\/\/ Date cible : 1er juin 2026 \u00e0 09h00\nconst targetDateModule2 = new Date('June 1, 2026 09:00:00').getTime();\n\nfunction updateCountdownModule2() {\n  const now = new Date().getTime();\n  const distance = targetDateModule2 - now;\n  \n  const days = Math.floor(distance \/ (1000 * 60 * 60 * 24));\n  const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n  const minutes = Math.floor((distance % (1000 * 60 * 60)) \/ (1000 * 60));\n  const seconds = Math.floor((distance % (1000 * 60)) \/ 1000);\n  \n  const formattedDays = days.toString().padStart(2, '0');\n  const formattedHours = hours.toString().padStart(2, '0');\n  const formattedMinutes = minutes.toString().padStart(2, '0');\n  const formattedSeconds = seconds.toString().padStart(2, '0');\n  \n  const countdownElement = document.getElementById('countdown-module2');\n  \n  if (countdownElement) {\n    countdownElement.innerHTML = \n      `${formattedDays} j  ${formattedHours} h  ${formattedMinutes} m<br>${formattedSeconds} s`;\n    \n    if (distance < 0) {\n      countdownElement.innerHTML = \"Module disponible \u2705\";\n      countdownElement.style.color = \"#ffeb3b\";\n    } else if (days < 7) {\n      countdownElement.style.color = \"#ffeb3b\";\n    }\n  }\n}\n\nupdateCountdownModule2();\nsetInterval(updateCountdownModule2, 1000);\n\n\/\/ Effet hover sur le bouton\ndocument.addEventListener('DOMContentLoaded', function() {\n  const button = document.querySelector('.moodle-btn');\n  if (button) {\n    button.addEventListener('mouseenter', function() {\n      this.style.transform = 'translateY(-2px)';\n      this.style.boxShadow = '0 6px 12px rgba(0,0,0,0.2)';\n    });\n    button.addEventListener('mouseleave', function() {\n      this.style.transform = 'translateY(0)';\n      this.style.boxShadow = 'none';\n    });\n  }\n});\n<\/script>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>WP3 Formation de formateurs : Module 1<\/strong> <\/summary>\n<div style=\"background: linear-gradient(135deg, #1e2a5e, #2a9d8f); color: #fff; padding: 25px; border-radius: 12px; max-width: 500px; margin: 20px auto; font-family: Arial, sans-serif; box-shadow: 0 4px 12px rgba(0,0,0,0.15);\">\n  <h3 style=\"margin-top: 0; border-left: 4px solid #fff; padding-left: 12px; color: #fff;\">\ud83c\udf93 WP3 Module 1 \u2013 Formation de formateurs<\/h3>\n  \n  <div style=\"background: rgba(255,255,255,0.15); padding: 15px; border-radius: 8px; margin: 15px 0; text-align: center;\">\n    <div style=\"font-size: 14px; margin-bottom: 8px; color: #e0f7ff;\">\ud83d\udcc5 D\u00e9but du module :<\/div>\n    <div id=\"countdown-module1\" style=\"font-size: 28px; font-weight: bold; font-family: 'Courier New', monospace; letter-spacing: 2px;\">\n      00 j  00 h  00 m<br>00 s\n    <\/div>\n    <div style=\"font-size: 12px; margin-top: 5px; color: #e0f7ff;\">\n      <span style=\"margin-right: 15px;\">Jours<\/span>\n      <span style=\"margin-right: 15px;\">Heures<\/span>\n      <span style=\"margin-right: 15px;\">Minutes<\/span>\n      <span>Secondes<\/span>\n    <\/div>\n  <\/div>\n\n  <hr style=\"border: none; height: 1px; background: rgba(255,255,255,0.3); margin: 20px 0;\">\n\n  <p style=\"margin: 10px 0; line-height: 1.5;\">\n    <strong>\ud83d\udccc Bridging the Gap<\/strong><br>\n    <em>Importance of Soft Skills for Future Graduate Success<\/em><br>\n    <span style=\"font-size: 13px;\">\ud83d\udc49 Combler l\u2019\u00e9cart : l\u2019importance des comp\u00e9tences comportementales pour la r\u00e9ussite des futurs dipl\u00f4m\u00e9s<\/span>\n  <\/p>\n\n  <p style=\"margin: 10px 0; line-height: 1.5;\">\n    \ud83d\udca1 Une formation con\u00e7ue <strong>par et pour les enseignants et formateurs<\/strong>, afin de mieux pr\u00e9parer les \u00e9tudiants d\u2019aujourd\u2019hui aux r\u00e9alit\u00e9s professionnelles de demain.\n  <\/p>\n\n  <p style=\"margin: 10px 0;\">\n    <strong>\ud83d\udcc5 Date :<\/strong> 4 mai 2026 \u00e0 09h00<br>\n    <strong>\ud83d\udcda Format :<\/strong> Module 1\/4 \u2013 Parcours en ligne sur <strong>Moodle<\/strong><br>\n    <strong>\ud83c\udfaf Projet :<\/strong> Erasmus+ BeSKilled\n  <\/p>\n\n  <div style=\"background: rgba(0,0,0,0.2); border-radius: 8px; padding: 10px; margin: 15px 0; text-align: center;\">\n    <div style=\"display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;\">\n      <span>\ud83c\uddf2\ud83c\udde6 Universit\u00e9 Sidi Mohamed Ben Abdellah<\/span>\n      <span>\ud83c\uddf2\ud83c\uddf9 L-Universit\u00e0 ta' Malta<\/span>\n    <\/div>\n  <\/div>\n\n  <p style=\"margin: 20px 0 0;\">\n    <a href=\"https:\/\/formation.beskilled.eu\/course\/view.php?id=6\" target=\"_blank\" style=\"background-color: #fff; color: #1e2a5e; padding: 10px 18px; border-radius: 6px; text-decoration: none; font-weight: bold; display: inline-block; transition: all 0.3s;\">\n      \ud83d\udd17 Acc\u00e9der \u00e0 la plateforme Moodle\n    <\/a>\n  <\/p>\n<\/div>\n\n<script>\n\/\/ Date cible : 4 mai 2026 \u00e0 09h00\nconst targetDate = new Date('May 4, 2026 09:00:00').getTime();\n\nfunction updateCountdown() {\n  const now = new Date().getTime();\n  const distance = targetDate - now;\n  \n  const days = Math.floor(distance \/ (1000 * 60 * 60 * 24));\n  const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n  const minutes = Math.floor((distance % (1000 * 60 * 60)) \/ (1000 * 60));\n  const seconds = Math.floor((distance % (1000 * 60)) \/ 1000);\n  \n  const formattedDays = days.toString().padStart(2, '0');\n  const formattedHours = hours.toString().padStart(2, '0');\n  const formattedMinutes = minutes.toString().padStart(2, '0');\n  const formattedSeconds = seconds.toString().padStart(2, '0');\n  \n  document.getElementById('countdown-module1').innerHTML = \n    `${formattedDays} j  ${formattedHours} h  ${formattedMinutes} m<br>${formattedSeconds} s`;\n  \n  if (distance < 0) {\n    document.getElementById('countdown-module1').innerHTML = \"Module disponible \u2705\";\n    document.getElementById('countdown-module1').style.color = \"#ffeb3b\";\n  } else if (days < 7) {\n    document.getElementById('countdown-module1').style.color = \"#ffeb3b\";\n  }\n}\n\nupdateCountdown();\nsetInterval(updateCountdown, 1000);\n\n\/\/ Effet hover sur le bouton\ndocument.addEventListener('DOMContentLoaded', function() {\n  const button = document.querySelector('a[href=\"https:\/\/formation.beskilled.eu\/course\/view.php?id=6\"]');\n  if (button) {\n    button.addEventListener('mouseenter', function() {\n      this.style.transform = 'translateY(-2px)';\n      this.style.boxShadow = '0 6px 12px rgba(0,0,0,0.2)';\n    });\n    button.addEventListener('mouseleave', function() {\n      this.style.transform = 'translateY(0)';\n      this.style.boxShadow = 'none';\n    });\n  }\n});\n<\/script>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>3\u00e8me R\u00e9union de Consortium<\/strong><\/summary>\n<div style=\"background: linear-gradient(135deg, #3a7bd5, #00d2ff); color: #fff; padding: 25px; border-radius: 12px; max-width: 500px; margin: 20px auto; font-family: Arial, sans-serif; box-shadow: 0 4px 12px rgba(0,0,0,0.15);\">\n  <h3 style=\"margin-top: 0; border-left: 4px solid #fff; padding-left: 12px;\">3\u00e8me R\u00e9union de Consortium<\/h3>\n  \n  <div style=\"background: rgba(255,255,255,0.15); padding: 15px; border-radius: 8px; margin: 15px 0; text-align: center;\">\n    <div style=\"font-size: 14px; margin-bottom: 8px; color: #e0f7ff;\">Compte \u00e0 rebours :<\/div>\n    <div id=\"countdown-consortium\" style=\"font-size: 28px; font-weight: bold; font-family: 'Courier New', monospace; letter-spacing: 2px;\">\n      00 j  00 h  00 m<br>00 s\n    <\/div>\n    <div style=\"font-size: 12px; margin-top: 5px; color: #e0f7ff;\">\n      <span style=\"margin-right: 15px;\">Jours<\/span>\n      <span style=\"margin-right: 15px;\">Heures<\/span>\n      <span style=\"margin-right: 15px;\">Minutes<\/span>\n      <span>Secondes<\/span>\n    <\/div>\n  <\/div>\n  \n  <hr style=\"border: none; height: 1px; background: rgba(255,255,255,0.3); margin: 20px 0;\">\n  \n  <p style=\"margin: 10px 0; line-height: 1.6;\">\n    <strong>Mardi 27 janvier 2026 \u00e0 10h00<\/strong>\n  <\/p>\n  \n  <p style=\"margin: 10px 0; line-height: 1.6;\">\n    <strong>Lieu :<\/strong> Universit\u00e9 de Malte, Valletta Campus<br>\n    <em style=\"font-size: 14px;\">Aula Magna, St Paul Street, Valletta, VLT 1216<\/em>\n  <\/p>\n  \n  <p style=\"margin: 20px 0 0;\">\n    <a href=\"https:\/\/www.um.edu.mt\/campuses\/valletta\/\" target=\"_blank\" style=\"background-color: #fff; color: #3a7bd5; padding: 10px 18px; border-radius: 6px; text-decoration: none; font-weight: bold; display: inline-block; transition: all 0.3s;\">\n      Voir le lieu\n    <\/a>\n  <\/p>\n<\/div>\n\n<script>\n\/\/ Date cible : 27 janvier 2026 \u00e0 10h00\nconst targetDate = new Date('January 27, 2026 10:00:00').getTime();\n\nfunction updateCountdown() {\n  const now = new Date().getTime();\n  const distance = targetDate - now;\n  \n  \/\/ Calcul des jours, heures, minutes et secondes\n  const days = Math.floor(distance \/ (1000 * 60 * 60 * 24));\n  const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n  const minutes = Math.floor((distance % (1000 * 60 * 60)) \/ (1000 * 60));\n  const seconds = Math.floor((distance % (1000 * 60)) \/ 1000);\n  \n  \/\/ Formatage avec 2 chiffres\n  const formattedDays = days.toString().padStart(2, '0');\n  const formattedHours = hours.toString().padStart(2, '0');\n  const formattedMinutes = minutes.toString().padStart(2, '0');\n  const formattedSeconds = seconds.toString().padStart(2, '0');\n  \n  \/\/ Mise \u00e0 jour de l'affichage\n  document.getElementById('countdown-consortium').innerHTML = \n    `${formattedDays} j  ${formattedHours} h  ${formattedMinutes} m<br>${formattedSeconds} s`;\n  \n  \/\/ Si le compte \u00e0 rebours est termin\u00e9\n  if (distance < 0) {\n    document.getElementById('countdown-consortium').innerHTML = \"\u00c9v\u00e9nement termin\u00e9\";\n    document.getElementById('countdown-consortium').style.color = \"#ffeb3b\";\n  } else if (days < 7) {\n    \/\/ Changement de couleur quand il reste moins d'une semaine\n    document.getElementById('countdown-consortium').style.color = \"#ffeb3b\";\n  }\n}\n\n\/\/ Premi\u00e8re mise \u00e0 jour\nupdateCountdown();\n\n\/\/ Mise \u00e0 jour chaque seconde\nsetInterval(updateCountdown, 1000);\n\n\/\/ Effet hover sur le bouton\ndocument.addEventListener('DOMContentLoaded', function() {\n  const button = document.querySelector('a[href=\"https:\/\/www.um.edu.mt\/campuses\/valletta\/\"]');\n  if (button) {\n    button.addEventListener('mouseenter', function() {\n      this.style.transform = 'translateY(-2px)';\n      this.style.boxShadow = '0 6px 12px rgba(0,0,0,0.2)';\n    });\n    button.addEventListener('mouseleave', function() {\n      this.style.transform = 'translateY(0)';\n      this.style.boxShadow = 'none';\n    });\n  }\n});\n<\/script>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>3\u00e8me R\u00e9union du Comit\u00e9 Qualit\u00e9<\/strong><\/summary>\n<div style=\"background: linear-gradient(135deg, #8e44ad, #9b59b6); color: #fff; padding: 25px; border-radius: 12px; max-width: 500px; margin: 20px auto; font-family: Arial, sans-serif; box-shadow: 0 4px 12px rgba(0,0,0,0.15);\">\n  <h3 style=\"margin-top: 0; border-left: 4px solid #fff; padding-left: 12px;\">3\u00e8me R\u00e9union du Comit\u00e9 Qualit\u00e9<\/h3>\n  \n  <div style=\"background: rgba(255,255,255,0.15); padding: 15px; border-radius: 8px; margin: 15px 0; text-align: center;\">\n    <div style=\"font-size: 14px; margin-bottom: 8px; color: #e0f7ff;\">Compte \u00e0 rebours :<\/div>\n    <div id=\"countdown-qualite\" style=\"font-size: 28px; font-weight: bold; font-family: 'Courier New', monospace; letter-spacing: 2px;\">\n      00 j  00 h  00 m<br>00 s\n    <\/div>\n    <div style=\"font-size: 12px; margin-top: 5px; color: #e0f7ff;\">\n      <span style=\"margin-right: 15px;\">Jours<\/span>\n      <span style=\"margin-right: 15px;\">Heures<\/span>\n      <span style=\"margin-right: 15px;\">Minutes<\/span>\n      <span>Secondes<\/span>\n    <\/div>\n  <\/div>\n  \n  <hr style=\"border: none; height: 1px; background: rgba(255,255,255,0.3); margin: 20px 0;\">\n  \n  <p style=\"margin: 10px 0; line-height: 1.6;\">\n    <strong>Mercredi 28 janvier 2026 \u00e0 09h30<\/strong>\n  <\/p>\n  \n  <p style=\"margin: 10px 0; line-height: 1.6;\">\n    <strong>Lieu :<\/strong> Universit\u00e9 de Malte, Valletta Campus<br>\n    <em style=\"font-size: 14px;\">Aula Magna, St Paul Street, Valletta, VLT 1216<\/em>\n  <\/p>\n  \n  <p style=\"margin: 20px 0 0;\">\n    <a href=\"https:\/\/www.um.edu.mt\/campuses\/valletta\/\" target=\"_blank\" style=\"background-color: #fff; color: #8e44ad; padding: 10px 18px; border-radius: 6px; text-decoration: none; font-weight: bold; display: inline-block; transition: all 0.3s;\">\n      Voir le lieu\n    <\/a>\n  <\/p>\n<\/div>\n\n<script>\n\/\/ Date cible pour la r\u00e9union Qualit\u00e9 : 28 janvier 2026 \u00e0 09h30\nconst targetDateQualite = new Date('January 28, 2026 09:30:00').getTime();\n\nfunction updateCountdownQualite() {\n  const now = new Date().getTime();\n  const distance = targetDateQualite - now;\n  \n  \/\/ Calcul des jours, heures, minutes et secondes\n  const days = Math.floor(distance \/ (1000 * 60 * 60 * 24));\n  const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n  const minutes = Math.floor((distance % (1000 * 60 * 60)) \/ (1000 * 60));\n  const seconds = Math.floor((distance % (1000 * 60)) \/ 1000);\n  \n  \/\/ Formatage avec 2 chiffres\n  const formattedDays = days.toString().padStart(2, '0');\n  const formattedHours = hours.toString().padStart(2, '0');\n  const formattedMinutes = minutes.toString().padStart(2, '0');\n  const formattedSeconds = seconds.toString().padStart(2, '0');\n  \n  \/\/ Mise \u00e0 jour de l'affichage\n  document.getElementById('countdown-qualite').innerHTML = \n    `${formattedDays} j  ${formattedHours} h  ${formattedMinutes} m<br>${formattedSeconds} s`;\n  \n  \/\/ Si le compte \u00e0 rebours est termin\u00e9\n  if (distance < 0) {\n    document.getElementById('countdown-qualite').innerHTML = \"\u00c9v\u00e9nement termin\u00e9\";\n    document.getElementById('countdown-qualite').style.color = \"#ffeb3b\";\n  } else if (days < 7) {\n    \/\/ Changement de couleur quand il reste moins d'une semaine\n    document.getElementById('countdown-qualite').style.color = \"#ffeb3b\";\n  } else {\n    document.getElementById('countdown-qualite').style.color = \"#fff\";\n  }\n}\n\n\/\/ Premi\u00e8re mise \u00e0 jour\nupdateCountdownQualite();\n\n\/\/ Mise \u00e0 jour chaque seconde\nsetInterval(updateCountdownQualite, 1000);\n\n\/\/ Effet hover sur le bouton\ndocument.addEventListener('DOMContentLoaded', function() {\n  const button = document.querySelector('a[href=\"https:\/\/www.um.edu.mt\/campuses\/valletta\/\"]');\n  if (button) {\n    button.addEventListener('mouseenter', function() {\n      this.style.transform = 'translateY(-2px)';\n      this.style.boxShadow = '0 6px 12px rgba(0,0,0,0.2)';\n    });\n    button.addEventListener('mouseleave', function() {\n      this.style.transform = 'translateY(0)';\n      this.style.boxShadow = 'none';\n    });\n  }\n});\n<\/script>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>R\u00e9union de pr\u00e9sentation du R\u00e9f\u00e9rentiel des comp\u00e9tences<\/strong><\/summary>\n<div style=\"background: linear-gradient(135deg, #3f70a5, #2e5984); color: #fff; padding: 20px; border-radius: 12px; max-width: 500px; margin: 20px auto; font-family: Arial, sans-serif;\">\n  <h3 style=\"margin-top: 0;\">R\u00e9union de pr\u00e9sentation du R\u00e9f\u00e9rentiel des comp\u00e9tences<\/h3>\n  <p style=\"margin: 10px 0;\">\n    Vendredi 18 juillet 2025<br>\n    9h \u2013 17h<br>\n    Universit\u00e9 Mohammed V de Rabat\n  <\/p>\n\n  <div style=\"font-size: 18px; margin: 15px 0; text-align: center;\">\n    <span id=\"countdown\" style=\"font-weight: bold;\"><\/span>\n  <\/div>\n\n  <p style=\"margin: 15px 0 0;\">\n    <a href=\"https:\/\/drive.google.com\/file\/d\/1U2YD6UqsOCZNEaIz5q5G7Myol18KquiU\/preview\" target=\"_blank\" style=\"background-color: #fff; color: #3f70a5; padding: 8px 14px; border-radius: 6px; text-decoration: none; font-weight: bold;\">\n      Lire plus\n    <\/a>\n  <\/p>\n<\/div>\n\n<script>\n  const eventDate = new Date(\"2025-07-18T09:00:00\").getTime();\n  const countdown = setInterval(() => {\n    const now = new Date().getTime();\n    const distance = eventDate - now;\n\n    if (distance < 0) {\n      clearInterval(countdown);\n      document.getElementById(\"countdown\").innerHTML = \"L'\u00e9v\u00e9nement a commenc\u00e9.\";\n      return;\n    }\n\n    const jours = Math.floor(distance \/ (1000 * 60 * 60 * 24));\n    const heures = Math.floor((distance % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n    const minutes = Math.floor((distance % (1000 * 60 * 60)) \/ (1000 * 60));\n    const secondes = Math.floor((distance % (1000 * 60)) \/ 1000);\n\n    document.getElementById(\"countdown\").innerHTML =\n      `${jours}j ${heures}h ${minutes}m ${secondes}s`;\n  }, 1000);\n<\/script>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>2\u00e8me <strong>R\u00e9union du Comit\u00e9 Qualit\u00e9<\/strong><\/strong><\/summary>\n<div style=\"background: linear-gradient(135deg, #6b6b6b, #4a4a4a); color: #fff; padding: 20px; border-radius: 12px; max-width: 500px; margin: 20px auto; font-family: Arial, sans-serif;\">\n  <h3 style=\"margin-top: 0;\">2\u00e8me r\u00e9union qualit\u00e9<\/h3>\n  <p style=\"margin: 10px 0;\">\n    Jeudi 9 octobre 2025<br>\n    9h \u2013 17h<br>\n    En ligne\n  <\/p>\n \n  <div style=\"font-size: 18px; margin: 15px 0; text-align: center;\">\n    <span id=\"countdown-qualite\" style=\"font-weight: bold;\"><\/span>\n  <\/div>\n \n  <p style=\"margin: 15px 0 0;\">\n    <a href=\"https:\/\/drive.google.com\/file\/d\/1Qaiqs_Ep2OdDeW_PHxf_lvAeBuiBUjX5\/preview\" target=\"_blank\" style=\"background-color: #fff; color: #4a4a4a; padding: 8px 14px; border-radius: 6px; text-decoration: none; font-weight: bold;\">\n      Programme\n    <\/a>\n  <\/p>\n<\/div>\n \n<script>\n  \/\/ Date de l'\u00e9v\u00e9nement : 9 octobre 2025 \u00e0 09h00\n  const eventDateQualite = new Date(\"2025-10-09T09:00:00\").getTime();\n  const timerQualite = setInterval(() => {\n    const now = new Date().getTime();\n    const distance = eventDateQualite - now;\n \n    if (distance < 0) {\n      clearInterval(timerQualite);\n      const element = document.getElementById(\"countdown-qualite\");\n      if(element) element.innerHTML = \"L'\u00e9v\u00e9nement a commenc\u00e9.\";\n      return;\n    }\n \n    const jours = Math.floor(distance \/ (1000 * 60 * 60 * 24));\n    const heures = Math.floor((distance % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n    const minutes = Math.floor((distance % (1000 * 60 * 60)) \/ (1000 * 60));\n    const secondes = Math.floor((distance % (1000 * 60)) \/ 1000);\n \n    const element = document.getElementById(\"countdown-qualite\");\n    if(element) {\n      element.innerHTML = `${jours}j ${heures}h ${minutes}m ${secondes}s`;\n    }\n  }, 1000);\n<\/script>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>2\u00e8me r\u00e9union du consortium<\/strong><\/summary>\n<div style=\"background: linear-gradient(135deg, #6b6b6b, #4a4a4a); color: #fff; padding: 20px; border-radius: 12px; max-width: 500px; margin: 20px auto; font-family: Arial, sans-serif;\">\n  <h3 style=\"margin-top: 0;\">Deuxi\u00e8me r\u00e9union du consortium<\/h3>\n  <p style=\"margin: 10px 0;\">\n    Vendredi 10 octobre 2025<br>\n    9h \u2013 17h<br>\n    En ligne\n  <\/p>\n \n  <div style=\"font-size: 18px; margin: 15px 0; text-align: center;\">\n    <span id=\"countdown\" style=\"font-weight: bold;\"><\/span>\n  <\/div>\n \n  <p style=\"margin: 15px 0 0;\">\n    <a href=\"https:\/\/drive.google.com\/file\/d\/1VKD-009lXFo0eNNlWuJ-FblZvCrF6j_W\/preview\" target=\"_blank\" style=\"background-color: #fff; color: #4a4a4a; padding: 8px 14px; border-radius: 6px; text-decoration: none; font-weight: bold;\">\n      Lire plus\n    <\/a>\n  <\/p>\n<\/div>\n \n<script>\n  const eventDate = new Date(\"2025-10-10T09:00:00\").getTime();\n  const countdown = setInterval(() => {\n    const now = new Date().getTime();\n    const distance = eventDate - now;\n \n    if (distance < 0) {\n      clearInterval(countdown);\n      document.getElementById(\"countdown\").innerHTML = \"L'\u00e9v\u00e9nement a commenc\u00e9.\";\n      return;\n    }\n \n    const jours = Math.floor(distance \/ (1000 * 60 * 60 * 24));\n    const heures = Math.floor((distance % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n    const minutes = Math.floor((distance % (1000 * 60 * 60)) \/ (1000 * 60));\n    const secondes = Math.floor((distance % (1000 * 60)) \/ 1000);\n \n    document.getElementById(\"countdown\").innerHTML =\n      `${jours}j ${heures}h ${minutes}m ${secondes}s`;\n  }, 1000);\n<\/script>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>1\u00e8re r\u00e9union de consortium : Kick-off meeting<\/strong><\/summary>\n<div style=\"background: linear-gradient(135deg, #ffa726, #fb8c00); color: #fff; padding: 20px; border-radius: 12px; max-width: 500px; margin: 20px auto; font-family: Arial, sans-serif;\">\n  <h3 style=\"margin-top: 0;\">1\u00e8re r\u00e9union de consortium : Kick-off meeting<\/h3>\n  <p style=\"margin: 10px 0;\">\n    Mardi 11 f\u00e9vrier 2025<br>\n    9h \u2013 17h<br>\n    Universit\u00e9 Ibn Tofail\n  <\/p>\n  <p style=\"margin: 15px 0 0;\">\n    <a href=\"https:\/\/sd.uit.ac.ma\/ibn-tofail-university-kenitra-launches-beskilled-project-to-enhance-soft-skills-in-higher-education\/\" target=\"_blank\" style=\"background-color: #fff; color: #fb8c00; padding: 8px 14px; border-radius: 6px; text-decoration: none; font-weight: bold;\">\n      Lire plus\n    <\/a>\n  <\/p>\n<\/div>\n<\/details>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"><\/div>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>","protected":false},"excerpt":{"rendered":"<p>\u00c9v\u00e8nements \ud83c\udf93 WP3 Module 2 \u2013 Formation de formateurs \ud83d\udcc5 D\u00e9but du module : 00 j 00 h 00 m00 s Jours Heures Minutes Secondes \ud83d\udccc Soft Skills: Implementing Active Learning and Authentic Assessment \ud83d\udc49 Soft Skills : Mettre en \u0153uvre l&rsquo;apprentissage actif et l&rsquo;\u00e9valuation authentique \ud83d\udca1 Une formation con\u00e7ue par et pour les enseignants&#8230;<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"class_list":["post-83","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/beskilled.eu\/en\/wp-json\/wp\/v2\/pages\/83","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/beskilled.eu\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/beskilled.eu\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/beskilled.eu\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/beskilled.eu\/en\/wp-json\/wp\/v2\/comments?post=83"}],"version-history":[{"count":52,"href":"https:\/\/beskilled.eu\/en\/wp-json\/wp\/v2\/pages\/83\/revisions"}],"predecessor-version":[{"id":630,"href":"https:\/\/beskilled.eu\/en\/wp-json\/wp\/v2\/pages\/83\/revisions\/630"}],"wp:attachment":[{"href":"https:\/\/beskilled.eu\/en\/wp-json\/wp\/v2\/media?parent=83"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}