All checks were successful
Deploy to Pages (via spiped & base64) / deploy (push) Successful in 19s
62 lines
2.4 KiB
HTML
62 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Rclone Photos | Google Photos on Linux</title>
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/dark.css">
|
||
<style>
|
||
:root { --brand-color: #4285F4; }
|
||
body { text-align: center; padding-top: 50px; }
|
||
.logo { width: 180px; border-radius: 22%; box-shadow: 0 10px 30px rgba(0,0,0,0.5); margin-bottom: 20px; }
|
||
pre { text-align: left; background: #1a1b1e; padding: 15px; border-radius: 8px; border: 1px solid #333; }
|
||
.badge { background: var(--brand-color); color: white; padding: 4px 12px; border-radius: 15px; font-size: 0.8em; }
|
||
.container { max-width: 800px; margin: 0 auto; }
|
||
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
|
||
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<img src="logo.png" alt="Rclone Photos Logo" class="logo">
|
||
|
||
<h1>Rclone Photos <span class="badge">Linux</span></h1>
|
||
<p>Verwalte deine Google Photos nativ unter Linux – schnell, sicher und Open Source mit rclone.</p>
|
||
|
||
<hr>
|
||
|
||
<h2>Quick Start</h2>
|
||
<p>Binde deinen Cloud-Speicher direkt in dein Dateisystem ein:</p>
|
||
<pre><code># Installiere rclone
|
||
sudo apt install rclone
|
||
|
||
# Konfiguriere den Remote mit deiner Client-ID
|
||
rclone config
|
||
|
||
# Mounten
|
||
rclone mount gphotos: ~/Bilder/GooglePhotos --vfs-cache-mode full</code></pre>
|
||
|
||
<div class="feature-grid">
|
||
<div style="text-align: left;">
|
||
<h3>🐧 Native Integration</h3>
|
||
<p>Nutze deine Fotos in Nautilus, Dolphin oder Thunar, als wären sie auf deiner Festplatte.</p>
|
||
</div>
|
||
<div style="text-align: left;">
|
||
<h3>🛡️ Volle Kontrolle</h3>
|
||
<p>Dank deiner eigenen Google Cloud Client ID behältst du die volle Souveränität über deine Daten.</p>
|
||
</div>
|
||
</div>
|
||
<footer>
|
||
<hr>
|
||
<p>
|
||
<small>
|
||
<a href="privacy.html">Datenschutz</a> |
|
||
<a href="terms.html">Nutzungsbedingungen</a> |
|
||
Gehostet auf <a href="https://gitea.scu.si">gitea.scu.si</a>
|
||
</small>
|
||
</p>
|
||
</footer>
|
||
</div>
|
||
</body>
|
||
</html>
|