34 lines
946 B
PHP
34 lines
946 B
PHP
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
<?php
|
|
require('core.php');
|
|
$json = file_get_contents("data/windows.json");
|
|
$parsed_json = json_decode($json);
|
|
?>
|
|
|
|
<head>
|
|
<title>Logiciels</title>
|
|
<meta charset="utf-8">
|
|
<meta name="theme-color" content="#b6c6ff"/>
|
|
<meta name="Description" content="A lists of useful free software">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<section id="main">
|
|
<div class="jumbotron text-center">
|
|
<h1>Logiciels recommandés</h1>
|
|
<p>N'installez que ce que vous utiliserez réellement !</p>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<?php showCategories($parsed_json); ?>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|
|
|