initial commit
This commit is contained in:
commit
2e59f250f0
94 changed files with 952 additions and 0 deletions
34
index.php
Normal file
34
index.php
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<!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>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue