Files
Rclone4GooglePhotos/public/index.html
Florian Walther 46ae3e0c18
All checks were successful
Deploy to Pages (via spiped & base64) / deploy (push) Successful in 20s
Datenschutzerklärung und Nutzungsbedingungen auf Frontseite verlinkt
2026-02-01 19:34:44 +01:00

62 lines
2.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>
<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>