trainvent/stimmapp-website
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lizenz - StimmApp</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.6;
max-width: 840px;
margin: 0 auto;
padding: 24px;
color: #1f2937;
background: #f8fafc;
}
.card {
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 12px;
padding: 24px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
h1 {
margin-top: 0;
color: #0f172a;
}
a {
color: #0b7a3d;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
code {
background: #f1f5f9;
padding: 2px 6px;
border-radius: 6px;
}
</style>
</head>
<body>
<div class="card">
<h1 id="title">Lizenz</h1>
<p id="intro">Dieses Projekt wird unter der <strong>GNU General Public License v3.0</strong> veroeffentlicht.</p>
<p><strong>SPDX:</strong> <code>GPL-3.0-only</code></p>
<p id="full-text-label">Vollstaendiger Lizenztext:</p>
<p><a id="license-text-link" href="https://www.gnu.org/licenses/gpl-3.0.txt" target="_blank" rel="noopener noreferrer">GNU GPL v3.0 (offizieller Text)</a></p>
<p id="contact-line">Kontakt bei Lizenzfragen: <a href="mailto:info@trainvent.com">info@trainvent.com</a></p>
<p><a id="back-link" href="./support.html">Zurueck zum Support</a></p>
</div>
<script>
const isEnglishHost = window.location.hostname.toLowerCase().includes('vivot.net');
const copy = isEnglishHost ? {
lang: 'en',
pageTitle: 'License - StimmApp',
title: 'License',
intro: 'This project is released under the <strong>GNU General Public License v3.0</strong>.',
fullText: 'Full license text:',
licenseTextLink: 'GNU GPL v3.0 (official text)',
contact: 'Contact for license questions: <a href="mailto:info@trainvent.com">info@trainvent.com</a>',
back: 'Back to Support'
} : {
lang: 'de',
pageTitle: 'Lizenz - StimmApp',
title: 'Lizenz',
intro: 'Dieses Projekt wird unter der <strong>GNU General Public License v3.0</strong> veroeffentlicht.',
fullText: 'Vollstaendiger Lizenztext:',
licenseTextLink: 'GNU GPL v3.0 (offizieller Text)',
contact: 'Kontakt bei Lizenzfragen: <a href="mailto:info@trainvent.com">info@trainvent.com</a>',
back: 'Zurueck zum Support'
};
document.documentElement.lang = copy.lang;
document.title = copy.pageTitle;
document.getElementById('title').textContent = copy.title;
document.getElementById('intro').innerHTML = copy.intro;
document.getElementById('full-text-label').textContent = copy.fullText;
document.getElementById('license-text-link').textContent = copy.licenseTextLink;
document.getElementById('contact-line').innerHTML = copy.contact;
document.getElementById('back-link').textContent = copy.back;
</script>
</body>
</html>