test 2
This commit is contained in:
@@ -4,7 +4,7 @@ const weeks = [
|
|||||||
{
|
{
|
||||||
month: "September",
|
month: "September",
|
||||||
code: "W36",
|
code: "W36",
|
||||||
dates: "01/09 – 07/09",
|
dates: "01/09 - 07/09",
|
||||||
caroleOffDays: 0,
|
caroleOffDays: 0,
|
||||||
isSchoolHoliday: false,
|
isSchoolHoliday: false,
|
||||||
isBankHoliday: false,
|
isBankHoliday: false,
|
||||||
@@ -14,7 +14,7 @@ const weeks = [
|
|||||||
{
|
{
|
||||||
month: "September",
|
month: "September",
|
||||||
code: "W38",
|
code: "W38",
|
||||||
dates: "15/09 – 21/09",
|
dates: "15/09 - 21/09",
|
||||||
caroleOffDays: 2,
|
caroleOffDays: 2,
|
||||||
isSchoolHoliday: false,
|
isSchoolHoliday: false,
|
||||||
isBankHoliday: false,
|
isBankHoliday: false,
|
||||||
@@ -24,7 +24,7 @@ const weeks = [
|
|||||||
{
|
{
|
||||||
month: "October",
|
month: "October",
|
||||||
code: "W40",
|
code: "W40",
|
||||||
dates: "29/09 – 05/10",
|
dates: "29/09 - 05/10",
|
||||||
caroleOffDays: 0,
|
caroleOffDays: 0,
|
||||||
isSchoolHoliday: false,
|
isSchoolHoliday: false,
|
||||||
isBankHoliday: false,
|
isBankHoliday: false,
|
||||||
@@ -34,7 +34,7 @@ const weeks = [
|
|||||||
{
|
{
|
||||||
month: "August",
|
month: "August",
|
||||||
code: "W32",
|
code: "W32",
|
||||||
dates: "03/08 – 09/08",
|
dates: "03/08 - 09/08",
|
||||||
caroleOffDays: 5,
|
caroleOffDays: 5,
|
||||||
isSchoolHoliday: true,
|
isSchoolHoliday: true,
|
||||||
isBankHoliday: false,
|
isBankHoliday: false,
|
||||||
|
|||||||
+5
-5
@@ -1,11 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
$pageTitle = "PachaFamily – Family Calendar";
|
$pageTitle = "PachaFamily - Family Calendar";
|
||||||
$activePage = "family-calendar";
|
$activePage = "family-calendar";
|
||||||
require __DIR__ . '/partials/header.php';
|
require __DIR__ . '/partials/header.php';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<h1>Family Calendar</h1>
|
<h1>Family Calendar</h1>
|
||||||
<p>Planning annuel de septembre à août – Carole (assistante maternelle), Alex & Laia (CP / RTT / JA).</p>
|
<p>Planning annuel de septembre à août - Carole (assistante maternelle), Alex & Laia (CP / RTT / JA).</p>
|
||||||
|
|
||||||
<section class="pf-section pf-section--panel">
|
<section class="pf-section pf-section--panel">
|
||||||
<div class="pf-flex pf-flex--wrap pf-gap-lg">
|
<div class="pf-flex pf-flex--wrap pf-gap-lg">
|
||||||
@@ -67,12 +67,12 @@ require __DIR__ . '/partials/header.php';
|
|||||||
<tr>
|
<tr>
|
||||||
<th>Mois</th>
|
<th>Mois</th>
|
||||||
<th>Semaine</th>
|
<th>Semaine</th>
|
||||||
<th>Dates (lun–dim)</th>
|
<th>Dates (lun-dim)</th>
|
||||||
<th># Off Carole</th>
|
<th># Off Carole</th>
|
||||||
<th>Vacances scolaires</th>
|
<th>Vacances scolaires</th>
|
||||||
<th>Bank holiday</th>
|
<th>Bank holiday</th>
|
||||||
<th colspan="3">Alex – jours posés (semaine)</th>
|
<th colspan="3">Alex - jours posés (semaine)</th>
|
||||||
<th colspan="3">Laia – jours posés (semaine)</th>
|
<th colspan="3">Laia - jours posés (semaine)</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th></th><th></th><th></th>
|
<th></th><th></th><th></th>
|
||||||
|
|||||||
+40
-16
@@ -1,19 +1,43 @@
|
|||||||
<?php
|
<!DOCTYPE html>
|
||||||
$pageTitle = "PachaFamily – Accueil";
|
<html lang="fr">
|
||||||
$activePage = "home";
|
<head>
|
||||||
require __DIR__ . '/partials/header.php';
|
<meta charset="UTF-8" />
|
||||||
?>
|
<title>PachaFamily - Accueil</title>
|
||||||
|
<link rel="stylesheet" href="assets/css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header class="pf-header">
|
||||||
|
<div class="pf-container pf-header-content">
|
||||||
|
<div class="pf-logo">PachaFamily</div>
|
||||||
|
<nav class="pf-nav">
|
||||||
|
<a href="index.php" class="pf-nav-link pf-nav-link--active"
|
||||||
|
>Accueil</a
|
||||||
|
>
|
||||||
|
<a href="family-calendar.php" class="pf-nav-link">Family calendar</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
<h1>Bienvenue sur PachaFamily</h1>
|
<main class="pf-container pf-main">
|
||||||
<p>Centre de contrôle de l’organisation familiale.</p>
|
<h1>Bienvenue sur PachaFamily</h1>
|
||||||
|
<p>Centre de controle de l'organisation familiale.</p>
|
||||||
|
|
||||||
<section class="pf-section">
|
<section class="pf-section">
|
||||||
<h2>Modules</h2>
|
<h2>Modules</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/family-calendar.php">Family calendar (congés, vacances, garde)</a></li>
|
<li>
|
||||||
<!-- Tu pourras ajouter d'autres modules ici -->
|
<a href="family-calendar.php"
|
||||||
</ul>
|
>Family calendar (conges, vacances, garde)</a
|
||||||
</section>
|
>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
|
||||||
<?php
|
<footer class="pf-footer">
|
||||||
require __DIR__ . '/partials/footer.php';
|
<div class="pf-container">
|
||||||
|
<small>© PachaFamily</small>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user