initial commit
5
category.php
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
<div class="category col-md rounded m-2">
|
||||
<h5 class="m-2"><?php echo $category->name; ?></h5>
|
||||
<?php showSoftwares($category); ?>
|
||||
</div>
|
||||
45
core.php
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
|
||||
|
||||
function showCategories($parsed_json)
|
||||
{
|
||||
|
||||
// Loop through Object
|
||||
foreach ($parsed_json as $key => $value) {
|
||||
$i_category = 0;
|
||||
while ($i_category < sizeof($value)) {
|
||||
echo "<div class=\"row my-2\">";
|
||||
|
||||
for ($x = 0; $x < 2; $x++) {
|
||||
if ($i_category < sizeof($value)) {
|
||||
$category = $value[$i_category];
|
||||
include('category.php');
|
||||
$i_category++;
|
||||
}
|
||||
}
|
||||
echo "</div>";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function showSoftwares($category)
|
||||
{
|
||||
$softwares = $category->software;
|
||||
|
||||
$i_software = 0;
|
||||
while ($i_software < sizeof($softwares)) {
|
||||
|
||||
echo "<div class=\"row my-2\">";
|
||||
|
||||
for ($x = 0; $x < 2; $x++) {
|
||||
if($i_software < sizeof($softwares)){
|
||||
$software = $softwares[$i_software];
|
||||
include('software.php');
|
||||
$i_software++;
|
||||
}
|
||||
}
|
||||
echo "</div>";
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
7
css/bootstrap.min.css
vendored
Normal file
29
css/style.css
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
body {
|
||||
height: 100%;
|
||||
background-color: #ffffff;
|
||||
background-image: url("../images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-image: url("../images/overlay.png"), -webkit-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-image: url("../images/overlay.png"), -ms-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-image: url("../images/overlay.png"), linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-repeat: repeat, no-repeat, no-repeat;
|
||||
background-size: 100px 100px, cover, cover;
|
||||
background-position: top left, center center, bottom center;
|
||||
background-attachment: fixed, fixed, fixed;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.bg-secondary {
|
||||
background-color: #fff !important;
|
||||
background-image: url("../images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-attachment: fixed;
|
||||
|
||||
}
|
||||
|
||||
.jumbotron{
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.category{
|
||||
background-color: white;
|
||||
}
|
||||
56
css/style.css.old
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
body {
|
||||
height: 100%;
|
||||
background-color: #ffffff;
|
||||
background-image: url("../images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-image: url("../images/overlay.png"), -webkit-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-image: url("../images/overlay.png"), -ms-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-image: url("../images/overlay.png"), linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-repeat: repeat, no-repeat, no-repeat;
|
||||
background-size: 100px 100px, cover, cover;
|
||||
background-position: top left, center center, bottom center;
|
||||
background-attachment: fixed, fixed, fixed;
|
||||
}
|
||||
|
||||
body:after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: inherit;
|
||||
opacity: 0;
|
||||
z-index: 1;
|
||||
background-color: #ffffff;
|
||||
background-image: url("../images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-image: url("../images/overlay.png"), -webkit-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-image: url("../images/overlay.png"), -ms-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-image: url("../images/overlay.png"), linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-repeat: repeat, no-repeat;
|
||||
background-size: 100px 100px, cover;
|
||||
background-position: top left, center center;
|
||||
-moz-transition: opacity 1.75s ease-out;
|
||||
-webkit-transition: opacity 1.75s ease-out;
|
||||
-ms-transition: opacity 1.75s ease-out;
|
||||
transition: opacity 1.75s ease-out;
|
||||
}
|
||||
|
||||
body.is-loading:after {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
|
||||
.bg-secondary {
|
||||
background-color: #fff !important;
|
||||
background-image: url("../images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||||
background-attachment: fixed;
|
||||
|
||||
}
|
||||
|
||||
.jumbotron{
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.category{
|
||||
background-color: white;
|
||||
}
|
||||
184
data/windows-dev.json
Normal file
|
|
@ -0,0 +1,184 @@
|
|||
{
|
||||
"catagory":[
|
||||
{
|
||||
"name":"Modelisation",
|
||||
"software":[
|
||||
{
|
||||
"name":"PlantUML",
|
||||
"description":"Pour éditer et retoucher vos images.",
|
||||
"image":"icons/jpegview.png",
|
||||
"link":"http://plantuml.com/"
|
||||
},
|
||||
{
|
||||
"name":"DBeaver",
|
||||
"description":"Gérer et retouchez vos images.",
|
||||
"image":"icons/darktable.png",
|
||||
"link":"http://dbeaver.jkiss.org/"
|
||||
},
|
||||
{
|
||||
"name":"Falcon",
|
||||
"description":"Gérer et retouchez vos images.",
|
||||
"image":"icons/darktable.png",
|
||||
"link":"https://github.com/plotly/falcon"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Webservice",
|
||||
"software":[
|
||||
{
|
||||
"name":"Insomnia",
|
||||
"description":"Pour éditer et retoucher vos images.",
|
||||
"image":"icons/jpegview.png",
|
||||
"link":"https://insomnia.rest/"
|
||||
},
|
||||
{
|
||||
"name":"SoapUI",
|
||||
"description":"Gérer et retouchez vos images.",
|
||||
"image":"icons/darktable.png",
|
||||
"link":"https://www.soapui.org/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"IDE",
|
||||
"software":[
|
||||
{
|
||||
"name":"Netbeans",
|
||||
"description":"Pour éditer et retoucher vos images.",
|
||||
"image":"icons/jpegview.png",
|
||||
"link":"https://netbeans.org/"
|
||||
},
|
||||
{
|
||||
"name":"Eclipse",
|
||||
"description":"Gérer et retouchez vos images.",
|
||||
"image":"icons/darktable.png",
|
||||
"link":"http://www.eclipse.org/"
|
||||
},
|
||||
{
|
||||
"name":"VSCodium",
|
||||
"description":"Pour éditer et retoucher vos images.",
|
||||
"image":"icons/gimp.png",
|
||||
"link":"https://vscodium.com/"
|
||||
},
|
||||
{
|
||||
"name":"Notepad++",
|
||||
"description":"Pour éditer et retoucher vos images.",
|
||||
"image":"icons/gimp.png",
|
||||
"link":"https://notepad-plus-plus.org/fr/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Gestionnaire de version",
|
||||
"software":[
|
||||
{
|
||||
"name":"TortoiseGit",
|
||||
"description":"Pour créer et modifier des documents bureautiques.",
|
||||
"image":"icons/libreoffice.png",
|
||||
"link":"https://tortoisegit.org/"
|
||||
},
|
||||
{
|
||||
"name":"TortoiseSVN",
|
||||
"description":"Pour lire vos fichiers PDF et des livres numériques.",
|
||||
"image":"icons/sumatra.png",
|
||||
"link":"https://tortoisesvn.net/"
|
||||
},
|
||||
{
|
||||
"name":"TortoiseCVS",
|
||||
"description":"Organisez vos idée sous forme de cartes heuristiques.",
|
||||
"image":"icons/xmind.jpg",
|
||||
"link":"http://www.tortoisecvs.org/"
|
||||
},
|
||||
{
|
||||
"name":"WinMerge",
|
||||
"description":"Organisez vos idée sous forme de cartes heuristiques.",
|
||||
"image":"icons/xmind.jpg",
|
||||
"link":"http://winmerge.org/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Administration",
|
||||
"software":[
|
||||
{
|
||||
"name":"Filezilla",
|
||||
"description":"Conçu pour consulter et afficher le World Wide Web.",
|
||||
"image":"icons/firefox.png",
|
||||
"link":"https://filezilla-project.org/"
|
||||
},
|
||||
{
|
||||
"name":"WinSCP",
|
||||
"description":"Conçu pour consulter et afficher le World Wide Web.",
|
||||
"image":"icons/firefox.png",
|
||||
"link":"https://winscp.net/eng/index.php"
|
||||
},
|
||||
{
|
||||
"name":"Putty",
|
||||
"description":"Conçu pour consulter et afficher le World Wide Web.",
|
||||
"image":"icons/firefox.png",
|
||||
"link":"http://www.putty.org/"
|
||||
},
|
||||
{
|
||||
"name":"LogExpert",
|
||||
"description":"Conçu pour consulter et afficher le World Wide Web.",
|
||||
"image":"icons/firefox.png",
|
||||
"link":"http://www.log-expert.de/"
|
||||
},
|
||||
{
|
||||
"name":"GrepWin",
|
||||
"description":"Un navigateur web.",
|
||||
"image":"icons/iron.png",
|
||||
"link":"http://stefanstools.sourceforge.net/grepWin.html"
|
||||
},
|
||||
{
|
||||
"name":"Cmder",
|
||||
"description":"Un navigateur web.",
|
||||
"image":"icons/iron.png",
|
||||
"link":"https://cmder.net/"
|
||||
},,
|
||||
{
|
||||
"name":"VirtualBox",
|
||||
"description":"Conçu pour consulter et afficher le World Wide Web.",
|
||||
"image":"icons/firefox.png",
|
||||
"link":"https://www.virtualbox.org/"
|
||||
},
|
||||
{
|
||||
"name":"SSHFS",
|
||||
"description":"Conçu pour consulter et afficher le World Wide Web.",
|
||||
"image":"icons/firefox.png",
|
||||
"link":"https://github.com/billziss-gh/sshfs-win"
|
||||
}
|
||||
{
|
||||
"name":"Chocolatey",
|
||||
"description":"Un navigateur web.",
|
||||
"image":"icons/iron.png",
|
||||
"link":"https://chocolatey.org/"
|
||||
},
|
||||
{
|
||||
"name":"VirtualBox",
|
||||
"description":"Conçu pour consulter et afficher le World Wide Web.",
|
||||
"image":"icons/firefox.png",
|
||||
"link":"https://www.virtualbox.org/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Documentation",
|
||||
"software":[
|
||||
{
|
||||
"name":"PDFCreator",
|
||||
"description":"Pour consulter vos mails.",
|
||||
"image":"icons/thunderbird.png",
|
||||
"link":"http://www.pdfforge.org/pdfcreator"
|
||||
},
|
||||
{
|
||||
"name":"Pandoc",
|
||||
"description":"Client de messagerie instantanée.",
|
||||
"image":"icons/pidgin.png",
|
||||
"link":"http://pandoc.org/"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
548
data/windows.json
Normal file
|
|
@ -0,0 +1,548 @@
|
|||
{
|
||||
"catagory":[
|
||||
{
|
||||
"name":"Bureautique",
|
||||
"software":[
|
||||
{
|
||||
"name":"LibreOffice",
|
||||
"description":"Pour créer et modifier des documents bureautiques.",
|
||||
"image":"icons/libreoffice.png",
|
||||
"link":"https://fr.libreoffice.org/"
|
||||
},
|
||||
{
|
||||
"name":"Sumatra Pdf",
|
||||
"description":"Pour lire vos fichiers PDF et des livres numériques.",
|
||||
"image":"icons/sumatra.png",
|
||||
"link":"https://www.sumatrapdfreader.org/"
|
||||
},
|
||||
{
|
||||
"name":"XMind",
|
||||
"description":"Pour organiser vos idées sous forme de cartes heuristiques.",
|
||||
"image":"icons/xmind.jpg",
|
||||
"link":"https://www.xmind.net/fr/"
|
||||
},
|
||||
{
|
||||
"name":"Yed",
|
||||
"description":"Pour créez toute sorte de schémas comme des organigrammes des cartes mentales et bien d'autres diagrammes.",
|
||||
"image":"icons/yed.png",
|
||||
"link":"https://www.yworks.com/products/yed"
|
||||
},
|
||||
{
|
||||
"name":"Dia",
|
||||
"description":"Pour modéliser vos projets sous forme de diagrammes ou de schémas.",
|
||||
"image":"icons/dia.png",
|
||||
"link":"http://dia-installer.de/index.html.fr"
|
||||
},
|
||||
{
|
||||
"name":"Scribus",
|
||||
"description":"Pour préparer des documents destinés à l'impression.",
|
||||
"image":"icons/scribus.png",
|
||||
"link":"https://www.scribus.net/"
|
||||
},
|
||||
{
|
||||
"name":"Sigil",
|
||||
"description":"Pour créer ou éditer des livres numériques",
|
||||
"image":"icons/sigil.png",
|
||||
"link":"https://sigil-ebook.com/"
|
||||
},
|
||||
{
|
||||
"name":"Marktext",
|
||||
"description":"Pour créer ou éditer des fichiers markdown.",
|
||||
"image":"icons/marktext.png",
|
||||
"link":"https://marktext.github.io/website/"
|
||||
},
|
||||
{
|
||||
"name":"GnuCash",
|
||||
"description":"Pour gérer vos finances.",
|
||||
"image":"icons/gnucash.png",
|
||||
"link":"http://gnucash.org/"
|
||||
},
|
||||
{
|
||||
"name":"HomeBank",
|
||||
"description":"Pour gérer vos comptes personnels.",
|
||||
"image":"icons/homebank.png",
|
||||
"link":"http://homebank.free.fr/"
|
||||
},
|
||||
{
|
||||
"name":"Grammalecte",
|
||||
"description":"Pour corriger vos documents.",
|
||||
"image":"icons/grammalecte.png",
|
||||
"link":"https://grammalecte.net/"
|
||||
},
|
||||
{
|
||||
"name":"Texmaker",
|
||||
"description":"Pour créer ou éditer des fichiers laTex.",
|
||||
"image":"icons/texmaker.png",
|
||||
"link":"http://www.xm1math.net/texmaker/index_fr.html"
|
||||
},
|
||||
{
|
||||
"name":"Projectlibre",
|
||||
"description":"Pour planifier vos différents projets.",
|
||||
"image":"icons/projectlibre.png",
|
||||
"link":"https://www.projectlibre.com/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Création",
|
||||
"software":[
|
||||
{
|
||||
"name":"jpegView",
|
||||
"description":"Pour éditer et retoucher vos images.",
|
||||
"image":"icons/jpegview.png",
|
||||
"link":"https://sourceforge.net/projects/jpegview/"
|
||||
},
|
||||
{
|
||||
"name":"PhotoDemon",
|
||||
"description":"Pour éditer vos images.",
|
||||
"image":"icons/photodemon.png",
|
||||
"link":"https://photodemon.org/"
|
||||
},
|
||||
{
|
||||
"name":"Darktable",
|
||||
"description":"Pour gérer et retoucher vos fichiers raw.",
|
||||
"image":"icons/darktable.png",
|
||||
"link":"https://www.darktable.org/"
|
||||
},
|
||||
{
|
||||
"name":"Gimp",
|
||||
"description":".Pour retoucher vos images.",
|
||||
"image":"icons/gimp.png",
|
||||
"link":"https://www.gimp.org/"
|
||||
},
|
||||
{
|
||||
"name":"Inkscape",
|
||||
"description":"Pour manipuler des images vectorielles.",
|
||||
"image":"icons/inkscape.png",
|
||||
"link":"https://inkscape.org/fr/"
|
||||
},
|
||||
{
|
||||
"name":"Krita",
|
||||
"description":"Pour coloriser vos illustrations.",
|
||||
"image":"icons/krita.png",
|
||||
"link":"https://krita.org"
|
||||
},
|
||||
{
|
||||
"name":"Audacity",
|
||||
"description":"Pour enregistrer et éditer du son.",
|
||||
"image":"icons/audacity.png",
|
||||
"link":"https://www.audacityteam.org/"
|
||||
},
|
||||
{
|
||||
"name":"Ardour",
|
||||
"description":"Pour réaliser des enregistrements multipiste et mixer du son.",
|
||||
"image":"icons/ardour.png",
|
||||
"link":"https://ardour.org/"
|
||||
},
|
||||
{
|
||||
"name":"Zrythm",
|
||||
"description":"Une station de travail audio numérique (STAN) hautement automatisée et intuitive .",
|
||||
"image":"icons/ardour.png",
|
||||
"link":"https://www.zrythm.org/fr/index.html"
|
||||
},
|
||||
{
|
||||
"name":"Qtractor",
|
||||
"description":"Pour séquencer des pistes audio et midi.",
|
||||
"image":"icons/qtractor.png",
|
||||
"link":"https://qtractor.sourceforge.io/"
|
||||
},
|
||||
{
|
||||
"name":"ShotCut",
|
||||
"description":"Pour réaliser des montages vidéo.",
|
||||
"image":"icons/shotcut.png",
|
||||
"link":"https://www.shotcut.org/"
|
||||
},
|
||||
{
|
||||
"name":"Flowblade",
|
||||
"description":"Un logiciel de montage multipiste non-linéaire.",
|
||||
"image":"icons/shotcut.png",
|
||||
"link":"https://jliljebl.github.io/flowblade/"
|
||||
},
|
||||
{
|
||||
"name":"DaVinci Resolve",
|
||||
"description":"Pour réaliser de la post production et des effets spéciaux.",
|
||||
"image":"icons/shotcut.png",
|
||||
"link":"https://www.blackmagicdesign.com/products/davinciresolve/"
|
||||
},
|
||||
{
|
||||
"name":"OBS Studio",
|
||||
"description":"Pour vous enregistrer en direct des captures vidéo de votre écran et de les diffuser.",
|
||||
"image":"icons/obs.png",
|
||||
"link":"https://obsproject.com/fr/"
|
||||
},
|
||||
{
|
||||
"name":"Blender",
|
||||
"description":"Pour réaliser des modélisations, des animations et des rendu 3D.",
|
||||
"image":"icons/blender.png",
|
||||
"link":"https://www.blender.org/"
|
||||
},
|
||||
{
|
||||
"name":"Sweet Home 3D",
|
||||
"description":"Pour dessiner des plans de votre logement.",
|
||||
"image":"icons/sweet.png",
|
||||
"link":"http://www.sweethome3d.com/fr/"
|
||||
},
|
||||
{
|
||||
"name":"FreeCAD",
|
||||
"description":"Pour modéliser des objets en 3D.",
|
||||
"image":"icons/freecad.svg",
|
||||
"link":"https://www.freecadweb.org/?lang=fr"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Web",
|
||||
"software":[
|
||||
{
|
||||
"name":"Firefox",
|
||||
"description":"Pour naviguer sur le Web.",
|
||||
"image":"icons/firefox.png",
|
||||
"link":"https://www.mozilla.org/fr/firefox/"
|
||||
},
|
||||
{
|
||||
"name":"Iridium Browser",
|
||||
"description":"Un Pour naviguer sur le Web.",
|
||||
"image":"icons/chromium.png",
|
||||
"link":"https://iridiumbrowser.de/"
|
||||
},
|
||||
{
|
||||
"name":"QuiteRss",
|
||||
"description":"Pour suivre l'actualité de vos sites et blogs préférés.",
|
||||
"image":"icons/quiterss.png",
|
||||
"link":"https://quiterss.org/"
|
||||
},
|
||||
{
|
||||
"name":"GPodder",
|
||||
"description":"Pour suivre des podcasts audio et vidéo.",
|
||||
"image":"icons/gpodder.png",
|
||||
"link":"https://gpodder.github.io/"
|
||||
},
|
||||
{
|
||||
"name":"Transmission",
|
||||
"description":"Pour télécharger des torrents et des magnets.",
|
||||
"image":"icons/transmission.png",
|
||||
"link":"https://transmissionbt.com/"
|
||||
},
|
||||
{
|
||||
"name":"Motrix",
|
||||
"description":"Pour gérer vos téléchargements.",
|
||||
"image":"icons/motrix.png",
|
||||
"link":"https://motrix.app/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Communication",
|
||||
"software":[
|
||||
{
|
||||
"name":"Thunderbird",
|
||||
"description":"Pour consulter vos courriels.",
|
||||
"image":"icons/thunderbird.png",
|
||||
"link":"https://www.thunderbird.net/fr/"
|
||||
},
|
||||
{
|
||||
"name":"Rambox",
|
||||
"description":"Pour regrouper les conversations liées à tous vos comptes de réseaux sociaux ou de messageries.",
|
||||
"image":"icons/rambox.png",
|
||||
"link":"https://rambox.pro/"
|
||||
},
|
||||
{
|
||||
"name":"Pidgin",
|
||||
"description":"Pour se connecter simultanément à plusieurs messageries instantanées.",
|
||||
"image":"icons/pidgin.png",
|
||||
"link":"https://pidgin.im/"
|
||||
},
|
||||
{
|
||||
"name":"Jitsi",
|
||||
"description":"Pour se connecter simultanément à plusieurs messageries instantanées.",
|
||||
"image":"icons/jitsi.png",
|
||||
"link":"https://jitsi.org/"
|
||||
},
|
||||
{
|
||||
"name":"Tox",
|
||||
"description":"Pour communiquer de manière sécurisée et décentralisée.",
|
||||
"image":"icons/tox.png",
|
||||
"link":"https://tox.chat/"
|
||||
},
|
||||
{
|
||||
"name":"Linephone",
|
||||
"description":"Pour téléphoner par Internet.",
|
||||
"image":"icons/linephone.png",
|
||||
"link":"https://www.linphone.org/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Multimedia",
|
||||
"software":[
|
||||
{
|
||||
"name":"VLC",
|
||||
"description":"Pour lire vos fichiers multimédias.",
|
||||
"image":"icons/vlc.png",
|
||||
"link":"https://www.videolan.org/vlc/"
|
||||
},
|
||||
{
|
||||
"name":"Museeks",
|
||||
"description":"Pour écouter de la musique.",
|
||||
"image":"icons/museeks.png",
|
||||
"link":"https://museeks.io/"
|
||||
},
|
||||
{
|
||||
"name":"Musicbrainz",
|
||||
"description":"Pour tagger vos fichiers musicaux.",
|
||||
"image":"icons/musicbrainz.png",
|
||||
"link":"https://picard.musicbrainz.org/"
|
||||
},
|
||||
{
|
||||
"name":"Mixxx",
|
||||
"description":"Pour mixer de la musique.",
|
||||
"image":"icons/mixxx.png",
|
||||
"link":"https://www.mixxx.org/"
|
||||
},
|
||||
{
|
||||
"name":"Kodi",
|
||||
"description":"Pour transformer votre téléviseur en TV connectée.",
|
||||
"image":"icons/kodi.png",
|
||||
"link":"https://kodi.tv/"
|
||||
},
|
||||
{
|
||||
"name":"Ultrastar",
|
||||
"description":"Pour vos soirées karaoké.",
|
||||
"image":"icons/ultrastar.png",
|
||||
"link":"https://usdx.eu/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Education",
|
||||
"software":[
|
||||
{
|
||||
"name":"Marble",
|
||||
"description":"Pour visualiser des cartes.",
|
||||
"image":"icons/marble.png",
|
||||
"link":"https://marble.kde.org/"
|
||||
},
|
||||
{
|
||||
"name":"Stellarium",
|
||||
"description":"Pour visualiser les planètes et les constellations.",
|
||||
"image":"icons/stellarium.png",
|
||||
"link":"http://stellarium.org/fr/"
|
||||
},
|
||||
{
|
||||
"name":"Anki",
|
||||
"description":"Pour réviser à l'aide de cartes-mémoires.",
|
||||
"image":"icons/anki.png",
|
||||
"link":"https://apps.ankiweb.net/"
|
||||
},
|
||||
{
|
||||
"name":"Geogebra",
|
||||
"description":"Pour réaliser des formes géométriques.",
|
||||
"image":"icons/geogebra.png",
|
||||
"link":"https://www.geogebra.org/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Base de données",
|
||||
"software":[
|
||||
{
|
||||
"name":"GCStar",
|
||||
"description":"Pour gérer vos collections.",
|
||||
"image":"icons/gcstar.png",
|
||||
"link":"http://gcstar.org/index.fr.php"
|
||||
},
|
||||
{
|
||||
"name":"Gramps",
|
||||
"description":"Pour réaliser votre généalogie.",
|
||||
"image":"icons/gramps.png",
|
||||
"link":"https://gramps-project.org/"
|
||||
},
|
||||
{
|
||||
"name":"Calibre",
|
||||
"description":"Pour gérer vos livres électroniques.",
|
||||
"image":"icons/calibre.png",
|
||||
"link":"https://calibre-ebook.com/fr"
|
||||
},
|
||||
{
|
||||
"name":"Zotero",
|
||||
"description":"Pour réaliser vos bibliographies.",
|
||||
"image":"icons/zotero.png",
|
||||
"link":"https://www.zotero.org/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Confidentialité et Sécurité",
|
||||
"software":[
|
||||
{
|
||||
"name":"uBlock Origin",
|
||||
"description":"Pour bloquer les publicités et les scripts de suivi.",
|
||||
"image":"icons/ublock.png",
|
||||
"link":"https://addons.mozilla.org/fr/firefox/addon/ublock-origin/"
|
||||
},
|
||||
{
|
||||
"name":"Script Safe",
|
||||
"description":"Pour vous protéger contre le pistage.",
|
||||
"image":"icons/scriptsafe.png",
|
||||
"link":"https://addons.mozilla.org/fr/firefox/addon/script-safe/"
|
||||
},
|
||||
{
|
||||
"name":"uMatrix",
|
||||
"description":"Pour vous protéger contre le pistage.",
|
||||
"image":"icons/umatrix.png",
|
||||
"link":"https://addons.mozilla.org/fr/firefox/addon/umatrix/"
|
||||
},
|
||||
{
|
||||
"name":"Decentraleyes",
|
||||
"description":"Pour vous protéger du pistage lié aux diffuseurs de contenus centralisés.",
|
||||
"image":"icons/decentraleyes.png",
|
||||
"link":"https://addons.mozilla.org/fr/firefox/addon/decentraleyes/"
|
||||
},
|
||||
{
|
||||
"name":"HTTPS-Everywhere",
|
||||
"description":"Pour utiliser HTTPS dans la mesure du possible.",
|
||||
"image":"icons/https.png",
|
||||
"link":"https://addons.mozilla.org/fr/firefox/addon/https-everywhere/"
|
||||
},
|
||||
{
|
||||
"name":"Cookie AutoDelete",
|
||||
"description":"Pour gérer les permissions de vos cookies.",
|
||||
"image":"icons/cookie.png",
|
||||
"link":"https://addons.mozilla.org/fr/firefox/addon/cookie-autodelete/"
|
||||
},
|
||||
{
|
||||
"name":"Canvas Blocker",
|
||||
"description":"Pour lutter contre le fingerprinting.",
|
||||
"image":"icons/canvasblocker.png",
|
||||
"link":"https://addons.mozilla.org/fr/firefox/addon/canvasblocker/"
|
||||
},
|
||||
{
|
||||
"name":"Anti-Adblock Killer",
|
||||
"description":"Pour désactiver les scripts anti-ablocage de pub.",
|
||||
"image":"icons/adblock.png",
|
||||
"link":"https://openuserjs.org/scripts/reek/Anti-Adblock_Killer_Reek"
|
||||
},
|
||||
{
|
||||
"name":"Copy Selection as Markdown",
|
||||
"description":"Copier de l'html en Markdown.",
|
||||
"image":"icons/pidgin.png",
|
||||
"link":"https://addons.mozilla.org/en-US/firefox/addon/copy-selection-as-markdown/"
|
||||
},
|
||||
{
|
||||
"name":"KeePass Tusk",
|
||||
"description":"Keepass dans le navigateur.",
|
||||
"image":"icons/pidgin.png",
|
||||
"link":"https://addons.mozilla.org/fr/firefox/addon/keepass-tusk/"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"Utilitaires",
|
||||
"software":[
|
||||
{
|
||||
"name":"7-Zip",
|
||||
"description":"Pour compresser ou décompresser vos fichiers.",
|
||||
"image":"icons/7zip.png",
|
||||
"link":"http://www.spiroo.be/7zip/"
|
||||
},
|
||||
{
|
||||
"name":"Q-Pdf Creator Easy",
|
||||
"description":"Pour créer des fichiers pdf.",
|
||||
"image":"icons/qpdf.png",
|
||||
"link":"https://sourceforge.net/projects/q-pdf-creator/"
|
||||
},
|
||||
{
|
||||
"name":"dupeGuru",
|
||||
"description":"Pour trouver des fichiers dupliqués.",
|
||||
"image":"icons/dupeguru.png",
|
||||
"link":"https://dupeguru.voltaicideas.net/"
|
||||
},
|
||||
{
|
||||
"name":"GreenShot",
|
||||
"description":"Pour faciliter le prise et l'édition de captures d'écrans.",
|
||||
"image":"icons/greenshot.png",
|
||||
"link":"http://getgreenshot.org/"
|
||||
},
|
||||
{
|
||||
"name":"Captura",
|
||||
"description":"Pour composer des scénarios pour les captures d'écran.",
|
||||
"image":"icons/captura.png",
|
||||
"link":"https://mathewsachin.github.io/Captura/"
|
||||
},
|
||||
{
|
||||
"name":"CLCL",
|
||||
"description":"Pour gérer votre presse-papier.",
|
||||
"image":"icons/clcl.png",
|
||||
"link":"https://nakka.com/soft/clcl/index_eng.html"
|
||||
},
|
||||
{
|
||||
"name":"cdrtfe",
|
||||
"description":"Pour graver des CD et des DVD.",
|
||||
"image":"icons/cdrtfe.jpg",
|
||||
"link":"https://cdrtfe.sourceforge.io/cdrtfe/index_en.html"
|
||||
},
|
||||
{
|
||||
"name":"WinCDEmu",
|
||||
"description":"Pour monter simplement des images disque.",
|
||||
"image":"icons/wincdemu.png",
|
||||
"link":"http://wincdemu.sysprogs.org/"
|
||||
},
|
||||
{
|
||||
"name":"Eraser",
|
||||
"description":"Pour effacer définitivement des données.",
|
||||
"image":"icons/eraser.png",
|
||||
"link":"https://eraser.heidi.ie/"
|
||||
},
|
||||
{
|
||||
"name":"BleachBit",
|
||||
"description":"Pour nettoyer et optimiser votre espace disque.",
|
||||
"image":"icons/bleachbit.png",
|
||||
"link":"https://www.bleachbit.org/"
|
||||
},
|
||||
{
|
||||
"name":"UltraDefrag",
|
||||
"description":"Pour défragmenter votre disque dur.",
|
||||
"image":"icons/ultradefrag.png",
|
||||
"link":"https://www.ultradefrag.net/index.shtml"
|
||||
},
|
||||
{
|
||||
"name":"WinDirStat",
|
||||
"description":"Pour visualiser l'espace disque utilisé sur vos disques durs.",
|
||||
"image":"icons/windirstat.png",
|
||||
"link":"https://windirstat.net/"
|
||||
},
|
||||
{
|
||||
"name":"Déjà Dup",
|
||||
"description":"Pour automatiser vos sauvegardes.",
|
||||
"image":"icons/dejadup.png",
|
||||
"link":"https://launchpad.net/deja-dup"
|
||||
},
|
||||
{
|
||||
"name":"Duplicati",
|
||||
"description":"Pour faciliter vos sauvegardes.",
|
||||
"image":"icons/duplicati.png",
|
||||
"link":"https://www.duplicati.com/"
|
||||
},
|
||||
{
|
||||
"name":"Lesspass",
|
||||
"description":"Pour créer des mots de passes uniques pour chaque sites.",
|
||||
"image":"icons/lesspass.png",
|
||||
"link":"https://addons.mozilla.org/fr/firefox/addon/lesspass/"
|
||||
},
|
||||
{
|
||||
"name":"Buttercup",
|
||||
"description":"Pour gérer vos mots de passe.",
|
||||
"image":"icons/buttercup.jpeg",
|
||||
"link":"https://buttercup.pw"
|
||||
},
|
||||
{
|
||||
"name":"Etcher",
|
||||
"description":"Pour créer des clefs usb bootables.",
|
||||
"image":"icons/etcher.png",
|
||||
"link":"https://etcher.io/"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
BIN
icons/7zip.png
Normal file
|
After Width: | Height: | Size: 881 B |
BIN
icons/adblock.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
icons/anki.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
icons/ardour.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
icons/audacity.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
icons/bleachbit.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
icons/blender.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
icons/buttercup.jpeg
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
icons/calibre.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
icons/canvasblocker.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
icons/captura.png
Normal file
|
After Width: | Height: | Size: 8 KiB |
BIN
icons/cdrtfe.jpg
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
icons/chromium.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
icons/clcl.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
icons/cookie.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
icons/darktable.png
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
BIN
icons/decentraleyes.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
icons/dejadup.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
icons/dia.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
icons/dupeguru.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
icons/duplicati.jpg
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
icons/duplicati.png
Normal file
|
After Width: | Height: | Size: 1 KiB |
BIN
icons/eraser.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
icons/etcher.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
icons/firefox.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
32
icons/freecad.svg
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="64px" height="64px" id="svg3140" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docname="FreeCAD05.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs id="defs3142">
|
||||
<linearGradient id="linearGradient3864">
|
||||
<stop id="stop3866" offset="0" style="stop-color:#71b2f8;stop-opacity:1;"/>
|
||||
<stop id="stop3868" offset="1" style="stop-color:#002795;stop-opacity:1;"/>
|
||||
</linearGradient>
|
||||
<radialGradient inkscape:collect="always" xlink:href="#linearGradient3864" id="radialGradient3661" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.61866, 0.966654, -1.03325, 0.661279, -327.276, -255.841)" cx="282.64584" cy="29.149046" fx="282.64584" fy="29.149046" r="19.571428"/>
|
||||
<linearGradient id="linearGradient3682">
|
||||
<stop style="stop-color:#ff6d0f;stop-opacity:1;" offset="0" id="stop3684"/>
|
||||
<stop style="stop-color:#ff1000;stop-opacity:1;" offset="1" id="stop3686"/>
|
||||
</linearGradient>
|
||||
<radialGradient inkscape:collect="always" xlink:href="#linearGradient3682" id="radialGradient3817" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.11492, 0.272231, -0.750717, 3.07456, -471.086, -148.329)" cx="270.58316" cy="33.899986" fx="270.58316" fy="33.899986" r="19.571428"/>
|
||||
<inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 32 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="64 : 32 : 1" inkscape:persp3d-origin="32 : 21.333333 : 1" id="perspective3148"/>
|
||||
</defs>
|
||||
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="5.5" inkscape:cx="32" inkscape:cy="32" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="640" inkscape:window-height="684" inkscape:window-x="0" inkscape:window-y="93"/>
|
||||
<metadata id="metadata3145">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer">
|
||||
<g id="g3813" transform="matrix(0.850641, 0, 0, 0.850641, 187.827, -0.196001)">
|
||||
<path sodipodi:nodetypes="ccccccccccc" id="rect3663" d="M -216.13659,7.270763 L -216.13659,62.770763 L -203.76159,62.770763 L -203.76159,41.052013 L -195.01159,41.052013 L -195.01159,32.489513 L -203.76159,32.489513 L -203.76159,23.247634 L -182.20645,23.247634 L -182.20645,7.302013 L -216.13659,7.270763 z" style="opacity:1;fill:url(#radialGradient3817);fill-opacity:1;fill-rule:evenodd;stroke:#370700;stroke-width:1.91000152;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
|
||||
<path id="path3659" d="M -161.05088,23.811562 L -168.24914,27.941451 L -171.42783,26.838359 L -174.46057,19.087636 L -179.23123,19.338335 L -181.40725,27.353068 L -184.45272,28.811478 L -192.04863,25.488663 L -195.25694,29.05385 L -191.12704,36.252107 L -192.25562,39.421483 L -200.00635,42.454224 L -199.73017,47.234186 L -191.71543,49.410207 L -190.25702,52.455668 L -193.60531,60.042283 L -190.04013,63.250589 L -182.84188,59.120698 L -179.64701,60.258581 L -176.63975,68 L -171.83431,67.733117 L -169.68377,59.709083 L -166.6383,58.250671 L -159.02622,61.608278 L -155.81791,58.043091 L -159.9478,50.844835 L -158.83541,47.640667 L -151.09399,44.633407 L -151.33537,39.83727 L -159.35941,37.686734 L -160.81783,34.641273 L -157.48571,27.019867 L -161.05088,23.811562 z M -171.83168,35.615821 L -170.35403,36.473178 L -169.07381,37.633913 L -168.04887,39.019136 L -167.31158,40.559263 L -166.87809,42.219505 L -166.80627,43.920968 L -167.05202,45.621989 L -167.61286,47.236819 L -168.50501,48.730653 L -169.63095,49.99469 L -171.01618,51.019623 L -172.55631,51.756914 L -174.21654,52.190397 L -175.92731,52.287705 L -177.62834,52.041972 L -179.24316,51.48112 L -180.73699,50.588971 L -181.99174,49.43754 L -183.02596,48.077805 L -183.76327,46.537679 L -184.18744,44.851952 L -184.28475,43.141183 L -184.03902,41.440158 L -183.47816,39.825332 L -182.59532,38.356981 L -181.46006,37.067461 L -180.07484,36.042527 L -178.53472,35.305233 L -176.849,34.881059 L -175.14753,34.809236 L -173.44651,35.054967 L -171.83168,35.615821 z" style="opacity:1;fill:url(#radialGradient3661);fill-opacity:1;fill-rule:evenodd;stroke:#000137;stroke-width:1.91000152;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.3 KiB |
BIN
icons/gcstar.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
icons/geogebra.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
icons/gimp.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
icons/gnucash.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
icons/gpodder.png
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
BIN
icons/grammalecte.png
Normal file
|
After Width: | Height: | Size: 5 KiB |
BIN
icons/gramps.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
icons/greenshot.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
icons/homebank.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
icons/https.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
icons/infrarecorder.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
icons/inkscape.png
Normal file
|
After Width: | Height: | Size: 6 KiB |
BIN
icons/iron.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
icons/jitsi.png
Normal file
|
After Width: | Height: | Size: 7 KiB |
BIN
icons/jpegview.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
icons/jsdisabler.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
icons/keepass.png
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
icons/kodi.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
icons/krita.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
icons/lesspass.png
Normal file
|
After Width: | Height: | Size: 956 B |
BIN
icons/libreoffice.png
Normal file
|
After Width: | Height: | Size: 770 B |
BIN
icons/linephone.png
Normal file
|
After Width: | Height: | Size: 638 B |
BIN
icons/linkify.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
icons/marble.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
icons/marktext.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
icons/mixxx.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
icons/motrix.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
icons/museeks.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
icons/musicbrainz.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
icons/obs.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
icons/photodemon.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
icons/pidgin.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
icons/projectlibre.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
icons/qpdf.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
icons/qtractor.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
icons/quiterss.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
icons/rambox.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
icons/scribus.png
Normal file
|
After Width: | Height: | Size: 8 KiB |
BIN
icons/scriptsafe.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
icons/shotcut.png
Normal file
|
After Width: | Height: | Size: 480 B |
BIN
icons/sigil.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
icons/stellarium.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
icons/sumatra.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
icons/sweet.png
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
icons/texmaker.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
icons/thunderbird.png
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
BIN
icons/tox.png
Normal file
|
After Width: | Height: | Size: 931 B |
BIN
icons/transmission.png
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
BIN
icons/typora.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
icons/ublock.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
icons/ultradefrag.png
Normal file
|
After Width: | Height: | Size: 436 B |
BIN
icons/ultrastar.png
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
icons/umatrix.png
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
icons/vlc.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
icons/wincdemu.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
icons/windirstat.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
icons/xmind.jpg
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
icons/yed.png
Normal file
|
After Width: | Height: | Size: 4 KiB |
BIN
icons/zotero.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
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>
|
||||
|
||||
12
software.php
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
<div class="col-md">
|
||||
<a href="<?php echo $software->link; ?>">
|
||||
<div class="media my-2">
|
||||
<img class="mr-3" src=" <?php echo $software->image; ?> " alt="">
|
||||
<div class="media-body small">
|
||||
<strong class="d-block"> <?php echo $software->name; ?></strong>
|
||||
<div style="color:rgb(33, 37, 41); :hover text-decoration:none};"><?php echo $software->description; ?></div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||