142 lines
3.6 KiB
HTML
142 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="fr">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>GN dépôt</title>
|
||
<style>
|
||
body {
|
||
font-family: sans-serif;
|
||
background-color: #f9f9f9;
|
||
color: #333;
|
||
margin: 2em;
|
||
line-height: 1.6;
|
||
}
|
||
.container {
|
||
max-width: 800px;
|
||
margin: auto;
|
||
background: #fff;
|
||
padding: 2em;
|
||
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
||
border-radius: 12px;
|
||
}
|
||
img.logo {
|
||
max-width: 200px;
|
||
display: block;
|
||
margin: 0 auto 2em;
|
||
}
|
||
pre {
|
||
background: #f4f4f4;
|
||
padding: 1em;
|
||
border-left: 5px solid #007acc;
|
||
overflow-x: auto;
|
||
}
|
||
h1, h2 {
|
||
color: #007acc;
|
||
text-align: center;
|
||
}
|
||
.packages {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
||
gap: 1.5em;
|
||
margin-top: 1.5em;
|
||
}
|
||
|
||
.package {
|
||
border: 1px solid #e0e0e0;
|
||
border-radius: 12px;
|
||
padding: 1.2em;
|
||
background: #fafafa;
|
||
transition: transform 0.2s, box-shadow 0.2s;
|
||
}
|
||
|
||
.package:hover {
|
||
transform: translateY(-4px);
|
||
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
|
||
}
|
||
|
||
.package-icon {
|
||
font-size: 2.5em;
|
||
margin-bottom: 0.5em;
|
||
}
|
||
|
||
.package h3 {
|
||
margin: 0.2em 0;
|
||
color: #007acc;
|
||
}
|
||
|
||
.package p {
|
||
font-size: 0.95em;
|
||
margin: 0.3em 0 0.8em;
|
||
}
|
||
|
||
.package code {
|
||
background: #eee;
|
||
padding: 0.2em 0.4em;
|
||
border-radius: 6px;
|
||
font-size: 0.9em;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<img src="logo.png" alt="Le Garage Numérique" class="logo" />
|
||
|
||
<h1>Bienvenue sur le dépôt APT du Garage Numérique</h1>
|
||
<p>Ce dépôt vous permet d’installer facilement les paquets maintenus par <strong>Le Garage Numérique</strong> sur les distributions basées sur Debian.</p>
|
||
</div>
|
||
|
||
<h2>Instructions d'utilisation</h2>
|
||
|
||
<div class="container">
|
||
<p>Installer le dépôt du garage :</p>
|
||
<pre><code>sudo wget -O /etc/apt/trusted.gpg.d/gn-depot.asc https://deb.legaragenumerique.fr/pgp-key.public
|
||
echo 'deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/gn-depot.asc] https://deb.legaragenumerique.fr stable main' \
|
||
| sudo tee /etc/apt/sources.list.d/gn-depot.list
|
||
sudo apt update</code></pre>
|
||
|
||
<p>Installer le paquet souhaité (ex. <code>geo</code>) :</p>
|
||
<pre><code>sudo apt install geo</code></pre>
|
||
|
||
<p>Et voilà 🎉 Vous êtes prêt à utiliser notre dépôt !</p>
|
||
</div>
|
||
|
||
<h2>Paquets disponibles</h2>
|
||
|
||
<div class="packages">
|
||
<div class="package">
|
||
<div class="package-icon">🌍</div>
|
||
<h3>Geographical Adventures</h3>
|
||
<p>Petit jeu sur la géographie.</p>
|
||
<code>sudo apt install geo</code><br>
|
||
<a href="https://sebastian.itch.io/geographical-adventures">Site web</a>
|
||
</div>
|
||
|
||
<div class="package">
|
||
<div class="package-icon">🔫</div>
|
||
<h3>World of padman</h3>
|
||
<p>Petit FPS open source.</p>
|
||
<code>sudo apt install wop</code><br>
|
||
<a href="https://worldofpadman.net">Site web</a>
|
||
</div>
|
||
|
||
<div class="package">
|
||
<div class="package-icon">✒️</div>
|
||
<h3>Scribus</h3>
|
||
<p>Scribus svn 1.7.3.</p>
|
||
<code>sudo apt install scribus</code><br>
|
||
<a href="https://www.scribus.net">Site web</a>
|
||
</div>
|
||
|
||
<!-- div class="package">
|
||
<div class="package-icon">📦</div>
|
||
<h3>backup-gn</h3>
|
||
<p>Solution simple de sauvegarde automatisée.</p>
|
||
<code>sudo apt install backup-gn</code><br>
|
||
<a href="https://www.legaragenumerique.fr">Site web</a>
|
||
</div> -->
|
||
|
||
</div>
|
||
</body>
|
||
</html>
|