softwares-list/index.php

35 lines
946 B
PHP
Raw Permalink Normal View History

2026-01-14 13:05:55 +01:00
<!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&nbsp;!</p>
</div>
<div class="container">
<?php showCategories($parsed_json); ?>
</div>
</section>
</body>
</html>