summaryrefslogtreecommitdiff
path: root/src/view/templates/page.php
blob: 3ea227acdf048da4b10e2f1b56fe5aac960d031f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="utf-8">
    <title></title>
    <link rel="icon" type="image/png" href="">
    <?= $ckeditor->getCSSOutsideEditorTag() ?>
    <?= $ckeditor->getCSSEditorTag() ?>
</head>
<body>
    <div>
<?php
foreach ($articles_content as $article)
{
    echo $article;
}
?>
    </div>
</body>
</html>