initial commit
This commit is contained in:
56
index.html
Normal file
56
index.html
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<!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 via Gitea.</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>Gehostet auf <a href="https://gitea.scu.si">gitea.scu.si</a> | Erstellt für die Linux Community</small></p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user