diff options
author | polo-pc-greta <ordipolo@gmx.fr> | 2025-05-08 12:32:34 +0200 |
---|---|---|
committer | polo-pc-greta <ordipolo@gmx.fr> | 2025-05-08 12:32:34 +0200 |
commit | 28698982ff6dc67a331788c2637bce8689121769 (patch) | |
tree | 6df30593fdcdd2ead77dd894467e5031a31cfde9 /src/view/templates | |
parent | 2d8ec75f4aaf3b93fd9f6758f8dcb4f1f9f03d0c (diff) | |
download | cms-28698982ff6dc67a331788c2637bce8689121769.zip |
modif page, création d'un bloc
Diffstat (limited to 'src/view/templates')
-rw-r--r-- | src/view/templates/article.php | 1 | ||||
-rw-r--r-- | src/view/templates/blog.php | 1 | ||||
-rw-r--r-- | src/view/templates/footer.php | 1 | ||||
-rw-r--r-- | src/view/templates/galery.php | 1 | ||||
-rw-r--r-- | src/view/templates/grid.php | 1 | ||||
-rw-r--r-- | src/view/templates/head.php | 1 | ||||
-rw-r--r-- | src/view/templates/header.php | 1 | ||||
-rw-r--r-- | src/view/templates/menu.php | 1 | ||||
-rw-r--r-- | src/view/templates/new.php | 1 |
9 files changed, 9 insertions, 0 deletions
diff --git a/src/view/templates/article.php b/src/view/templates/article.php index c57c1cb..5cf35c2 100644 --- a/src/view/templates/article.php +++ b/src/view/templates/article.php | |||
@@ -1,3 +1,4 @@ | |||
1 | <?php declare(strict_types=1); ?> | ||
1 | <article> | 2 | <article> |
2 | <div class="article_content"> | 3 | <div class="article_content"> |
3 | <div class="article_title_zone"> | 4 | <div class="article_title_zone"> |
diff --git a/src/view/templates/blog.php b/src/view/templates/blog.php index e2066c8..dfb65b5 100644 --- a/src/view/templates/blog.php +++ b/src/view/templates/blog.php | |||
@@ -1,3 +1,4 @@ | |||
1 | <?php declare(strict_types=1); ?> | ||
1 | <section class="blog" id="<?= $this->id_node ?>"> | 2 | <section class="blog" id="<?= $this->id_node ?>"> |
2 | <h3><?= $title ?></h3> | 3 | <h3><?= $title ?></h3> |
3 | <?= $new_article ?> | 4 | <?= $new_article ?> |
diff --git a/src/view/templates/footer.php b/src/view/templates/footer.php index a4e3544..52cb1b5 100644 --- a/src/view/templates/footer.php +++ b/src/view/templates/footer.php | |||
@@ -1,3 +1,4 @@ | |||
1 | <?php declare(strict_types=1); ?> | ||
1 | <footer> | 2 | <footer> |
2 | <?= $breadcrumb ?> | 3 | <?= $breadcrumb ?> |
3 | <div> | 4 | <div> |
diff --git a/src/view/templates/galery.php b/src/view/templates/galery.php index 246c4dd..97f8cd8 100644 --- a/src/view/templates/galery.php +++ b/src/view/templates/galery.php | |||
@@ -1,3 +1,4 @@ | |||
1 | <?php declare(strict_types=1); ?> | ||
1 | <section class="galery" id="<?= $this->id_node ?>"> | 2 | <section class="galery" id="<?= $this->id_node ?>"> |
2 | <h3><?= $title ?></h3> | 3 | <h3><?= $title ?></h3> |
3 | <?= $new_article ?> | 4 | <?= $new_article ?> |
diff --git a/src/view/templates/grid.php b/src/view/templates/grid.php index f9e441d..71c052b 100644 --- a/src/view/templates/grid.php +++ b/src/view/templates/grid.php | |||
@@ -1,3 +1,4 @@ | |||
1 | <?php declare(strict_types=1); ?> | ||
1 | <section class="grid" id="<?= $this->id_node ?>"> | 2 | <section class="grid" id="<?= $this->id_node ?>"> |
2 | <h3><?= $title ?></h3> | 3 | <h3><?= $title ?></h3> |
3 | <?= $new_article ?> | 4 | <?= $new_article ?> |
diff --git a/src/view/templates/head.php b/src/view/templates/head.php index 1ebb17e..b74335e 100644 --- a/src/view/templates/head.php +++ b/src/view/templates/head.php | |||
@@ -1,3 +1,4 @@ | |||
1 | <?php declare(strict_types=1); ?> | ||
1 | <!DOCTYPE html> | 2 | <!DOCTYPE html> |
2 | <html lang="fr"> | 3 | <html lang="fr"> |
3 | <head> | 4 | <head> |
diff --git a/src/view/templates/header.php b/src/view/templates/header.php index 4b633a6..1855741 100644 --- a/src/view/templates/header.php +++ b/src/view/templates/header.php | |||
@@ -1,3 +1,4 @@ | |||
1 | <?php declare(strict_types=1); ?> | ||
1 | <body> | 2 | <body> |
2 | <div> | 3 | <div> |
3 | <header> | 4 | <header> |
diff --git a/src/view/templates/menu.php b/src/view/templates/menu.php index d62b78b..55c9ff9 100644 --- a/src/view/templates/menu.php +++ b/src/view/templates/menu.php | |||
@@ -1,3 +1,4 @@ | |||
1 | <?php declare(strict_types=1); ?> | ||
1 | <section class="menu"> | 2 | <section class="menu"> |
2 | <h3>Menu et chemins</h3> | 3 | <h3>Menu et chemins</h3> |
3 | <div class="new_page_button"> | 4 | <div class="new_page_button"> |
diff --git a/src/view/templates/new.php b/src/view/templates/new.php index fce0702..6533913 100644 --- a/src/view/templates/new.php +++ b/src/view/templates/new.php | |||
@@ -1,3 +1,4 @@ | |||
1 | <?php declare(strict_types=1); ?> | ||
1 | <article> | 2 | <article> |
2 | <div class="new_content"> | 3 | <div class="new_content"> |
3 | <div class="article_title_zone"> | 4 | <div class="article_title_zone"> |