VeilleTechnoPHP/index.php
2022-03-21 10:52:23 +01:00

88 lines
2.5 KiB
PHP

<?php
include './RSSArticle.php';
include './RSSArticleManager.php';
$am = new RSSArticleManager();
$tabArticle = $am -> sortArticles($am -> createArticles());
$sideBarArticles = $am -> sortArticles($am -> createNArticles(5));
$text = file_get_contents("./synthese.txt");
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Veille Technologique Framework PHP</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/font-awesome.min.css">
<link rel="stylesheet" href="./css/font.css">
<link rel="stylesheet" href="./css/w3-theme-black.css">
<link rel="stylesheet" href="./css/w3.css">
<style>
html,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Roboto", sans-serif;
}
.w3-sidebar {
z-index: 3;
width: 250px;
top: 43px;
bottom: 0;
height: inherit;
}
</style>
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-theme w3-top w3-left-align w3-large">
<a href="./index.php" class="w3-bar-item w3-button w3-theme-l1">Index</a>
<a href="./articles.php" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Articles</a>
</div>
</div>
<!-- Sidebar -->
<nav class="w3-sidebar w3-bar-block w3-collapse w3-large w3-theme-l5 w3-animate-left" id="mySidebar">
<a href="javascript:void(0)" onclick="w3_close()"
class="w3-right w3-xlarge w3-padding-large w3-hover-black w3-hide-large" title="Close Menu">
<i class="fa fa-remove"></i>
</a>
<h4 class="w3-bar-item"><b>Derniers articles</b></h4>
<?php
foreach ($sideBarArticles as $a) {
echo '<a class="w3-bar-item w3-button w3-hover-black" href="' .$a->getArticleUrl() .'" target="_blank">' .$a->getArticleName() .'</a>';
}
?>
<a class="w3-bar-item w3-button w3-hover-black" href="./articles.php">Voir plus d'article</a>
</nav>
<!-- Main content: shift it to the right by 250 pixels when the sidebar is visible -->
<div class="w3-main" style="margin-left:250px">
<div class="w3-row w3-padding-64">
<div class="w3-twothird w3-container">
<h1 class="w3-text-teal">Veille Technologique | Framework PHP</h1>
<p><?php echo $text ?></p>
</div>
</div>
<!-- END MAIN -->
</div>
</body>
</html>