diff options
author | git-pc-greta <ordipolo@gmx.fr> | 2025-01-30 14:52:59 +0100 |
---|---|---|
committer | git-pc-greta <ordipolo@gmx.fr> | 2025-01-30 14:52:59 +0100 |
commit | 63759dbbf023daa8f7f310b914a04310a4770154 (patch) | |
tree | 54432d8c60c3f00d3a8f9866ecd7e3089007d467 /src/view | |
parent | 4b21b40292de8ee08220ab901651a13ec5e35199 (diff) | |
download | ckeditor5-63759dbbf023daa8f7f310b914a04310a4770154.zip |
foreach articles, modèle et id à l'extérieur
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/templates/page.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/view/templates/page.php b/src/view/templates/page.php index 05c7444..3ea227a 100644 --- a/src/view/templates/page.php +++ b/src/view/templates/page.php | |||
@@ -9,7 +9,12 @@ | |||
9 | </head> | 9 | </head> |
10 | <body> | 10 | <body> |
11 | <div> | 11 | <div> |
12 | <?= $editeurHTML ?> | 12 | <?php |
13 | foreach ($articles_content as $article) | ||
14 | { | ||
15 | echo $article; | ||
16 | } | ||
17 | ?> | ||
13 | </div> | 18 | </div> |
14 | </body> | 19 | </body> |
15 | </html> | 20 | </html> |