Spaces:
Running
Running
sorry, habe verwechselt, dass es hier zwei verschiedene themen sind, die ich auch nicht vermisschen möchte.
Browse files- README.md +7 -4
- components/footer.js +124 -0
- components/navbar.js +55 -0
- index.html +125 -19
- script.js +18 -0
- style.css +38 -25
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
|
| 4 |
-
colorFrom: blue
|
| 5 |
colorTo: red
|
|
|
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: XenForo Turbo Evolution 🚀
|
| 3 |
+
colorFrom: gray
|
|
|
|
| 4 |
colorTo: red
|
| 5 |
+
emoji: 🐳
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://huggingface.co/deepsite).
|
components/footer.js
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="de">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>XenForo Evolution | Analyse & Optimierung</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 9 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 10 |
+
<link rel="stylesheet" href="style.css">
|
| 11 |
+
<script src="components/navbar.js"></script>
|
| 12 |
+
<script src="components/footer.js"></script>
|
| 13 |
+
</head>
|
| 14 |
+
<body class="bg-gray-50 min-h-screen flex flex-col">
|
| 15 |
+
<custom-navbar></custom-navbar>
|
| 16 |
+
|
| 17 |
+
<main class="flex-grow container mx-auto px-4 py-12">
|
| 18 |
+
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden">
|
| 19 |
+
<!-- Book Cover -->
|
| 20 |
+
<div class="bg-gradient-to-r from-blue-600 to-indigo-800 p-8 text-white">
|
| 21 |
+
<div class="flex items-center justify-between">
|
| 22 |
+
<div>
|
| 23 |
+
<span class="inline-block bg-white bg-opacity-20 px-3 py-1 rounded-full text-sm font-semibold">Analyse & Handbuch</span>
|
| 24 |
+
<h1 class="mt-4 text-4xl font-bold">XenForo Evolution</h1>
|
| 25 |
+
<p class="mt-2 text-xl opacity-90">Meine Einschätzung zu XenForo<br>und Optimierungsvorschläge</p>
|
| 26 |
+
</div>
|
| 27 |
+
<div class="hidden md:block">
|
| 28 |
+
<i data-feather="book" class="w-24 h-24 opacity-50"></i>
|
| 29 |
+
</div>
|
| 30 |
+
</div>
|
| 31 |
+
</div>
|
| 32 |
+
|
| 33 |
+
<!-- Content -->
|
| 34 |
+
<div class="p-8">
|
| 35 |
+
<section>
|
| 36 |
+
<h2 class="text-2xl font-bold text-gray-800 border-b pb-2 mb-6">Über dieses Buch</h2>
|
| 37 |
+
<p class="text-gray-600 leading-relaxed mb-6">
|
| 38 |
+
Dieses Handbuch präsentiert eine umfassende Analyse der XenForo Community Platform
|
| 39 |
+
und entwickelt konkrete Optimierungsvorschläge für zukunftsfähige Community-Software.
|
| 40 |
+
</p>
|
| 41 |
+
<div class="bg-blue-50 border-l-4 border-blue-500 p-4 mb-6">
|
| 42 |
+
<strong class="block text-blue-700 mb-1">Zitat des Autors</strong>
|
| 43 |
+
<p class="text-gray-700 italic">"Ein reiner Klon wäre verschenktes Potenzial. Die Kombination aus XenForos Stabilität mit modernen Features könnte ein echtes Alleinstellungsmerkmal schaffen!"</p>
|
| 44 |
+
</div>
|
| 45 |
+
</section>
|
| 46 |
+
|
| 47 |
+
<section class="mt-12">
|
| 48 |
+
<h2 class="text-2xl font-bold text-gray-800 border-b pb-2 mb-6">Hauptkapitel</h2>
|
| 49 |
+
<div class="space-y-4">
|
| 50 |
+
<div class="p-4 border rounded-lg hover:shadow-md transition-shadow">
|
| 51 |
+
<h3 class="font-semibold text-lg text-gray-800 flex items-center">
|
| 52 |
+
<i data-feather="bar-chart-2" class="mr-2 w-5 h-5"></i>
|
| 53 |
+
Teil 1: Bewertung der XenForo-Plattform
|
| 54 |
+
</h3>
|
| 55 |
+
<p class="text-gray-600 mt-2">Stärken, Schwächen und Lücken im Vergleich zu modernen Plattformen</p>
|
| 56 |
+
</div>
|
| 57 |
+
|
| 58 |
+
<div class="p-4 border rounded-lg hover:shadow-md transition-shadow bg-indigo-50 border-indigo-200">
|
| 59 |
+
<h3 class="font-semibold text-lg text-gray-800 flex items-center">
|
| 60 |
+
<i data-feather="zap" class="mr-2 w-5 h-5"></i>
|
| 61 |
+
Vier konkrete Optimierungsvorschläge
|
| 62 |
+
</h3>
|
| 63 |
+
<ul class="mt-2 space-y-1 text-gray-600 list-disc list-inside">
|
| 64 |
+
<li>Tiefe Telegram-Integration</li>
|
| 65 |
+
<li>KI-gestütztes Community-Engagement</li>
|
| 66 |
+
<li>Integrierte Gamification-Engine</li>
|
| 67 |
+
<li>Native Mobile Apps</li>
|
| 68 |
+
</ul>
|
| 69 |
+
</div>
|
| 70 |
+
|
| 71 |
+
<div class="p-4 border rounded-lg hover:shadow-md transition-shadow">
|
| 72 |
+
<h3 class="font-semibold text-lg text-gray-800 flex items-center">
|
| 73 |
+
<i data-feather="file-text" class="mr-2 w-5 h-5"></i>
|
| 74 |
+
Vollständiges Analyse- und Optimierungsdokument
|
| 75 |
+
</h3>
|
| 76 |
+
<p class="text-gray-600 mt-2">Strategische Überlegungen zur Umsetzung</p>
|
| 77 |
+
</div>
|
| 78 |
+
</div>
|
| 79 |
+
</section>
|
| 80 |
+
|
| 81 |
+
<section class="mt-12 bg-gray-50 p-6 rounded-lg">
|
| 82 |
+
<h2 class="text-2xl font-bold text-gray-800 mb-4">Technische Dokumentation</h2>
|
| 83 |
+
<div class="grid md:grid-cols-2 gap-6">
|
| 84 |
+
<div class="bg-white p-4 rounded-lg shadow-sm border">
|
| 85 |
+
<h3 class="font-semibold text-gray-800 flex items-center">
|
| 86 |
+
<i data-feather="code" class="mr-2 w-4 h-4"></i>
|
| 87 |
+
Feature-Matrix
|
| 88 |
+
</h3>
|
| 89 |
+
<table class="w-full mt-2 text-sm">
|
| 90 |
+
<tr class="border-b">
|
| 91 |
+
<td class="py-2 text-gray-600">PWA statt Apps</td>
|
| 92 |
+
<td class="py-2 text-red-500">Nachteil</td>
|
| 93 |
+
</tr>
|
| 94 |
+
<tr class="border-b">
|
| 95 |
+
<td class="py-2 text-gray-600">Telegram-Integration</td>
|
| 96 |
+
<td class="py-2 text-green-500">Basis vorhanden</td>
|
| 97 |
+
</tr>
|
| 98 |
+
<tr class="border-b">
|
| 99 |
+
<td class="py-2 text-gray-600">KI-Moderation</td>
|
| 100 |
+
<td class="py-2 text-red-500">Fehlt</td>
|
| 101 |
+
</tr>
|
| 102 |
+
</table>
|
| 103 |
+
</div>
|
| 104 |
+
<div class="bg-white p-4 rounded-lg shadow-sm border">
|
| 105 |
+
<h3 class="font-semibold text-gray-800 flex items-center">
|
| 106 |
+
<i data-feather="git-merge" class="mr-2 w-4 h-4"></i>
|
| 107 |
+
Implementation
|
| 108 |
+
</h3>
|
| 109 |
+
<p class="mt-2 text-sm text-gray-600">
|
| 110 |
+
Optionen: Neuentwicklung vs. XenForo-Erweiterung.
|
| 111 |
+
Priorisierung von Features und Entwicklungspfad.
|
| 112 |
+
</p>
|
| 113 |
+
</div>
|
| 114 |
+
</div>
|
| 115 |
+
</section>
|
| 116 |
+
</div>
|
| 117 |
+
</div>
|
| 118 |
+
</main>
|
| 119 |
+
|
| 120 |
+
<custom-footer></custom-footer>
|
| 121 |
+
<script>feather.replace();</script>
|
| 122 |
+
<script src="script.js"></script>
|
| 123 |
+
</body>
|
| 124 |
+
</html>
|
components/navbar.js
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomNavbar extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
nav {
|
| 7 |
+
background-color: white;
|
| 8 |
+
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
| 9 |
+
}
|
| 10 |
+
.nav-content {
|
| 11 |
+
max-width: 1200px;
|
| 12 |
+
margin: 0 auto;
|
| 13 |
+
padding: 1rem 2rem;
|
| 14 |
+
display: flex;
|
| 15 |
+
justify-content: space-between;
|
| 16 |
+
align-items: center;
|
| 17 |
+
}
|
| 18 |
+
.nav-title {
|
| 19 |
+
font-weight: 700;
|
| 20 |
+
color: #4f46e5;
|
| 21 |
+
font-size: 1.25rem;
|
| 22 |
+
}
|
| 23 |
+
.nav-links a {
|
| 24 |
+
margin-left: 1.5rem;
|
| 25 |
+
color: #4b5563;
|
| 26 |
+
text-decoration: none;
|
| 27 |
+
font-weight: 500;
|
| 28 |
+
transition: color 0.2s;
|
| 29 |
+
}
|
| 30 |
+
.nav-links a:hover {
|
| 31 |
+
color: #4f46e5;
|
| 32 |
+
}
|
| 33 |
+
@media print {
|
| 34 |
+
nav {
|
| 35 |
+
display: none;
|
| 36 |
+
}
|
| 37 |
+
}
|
| 38 |
+
</style>
|
| 39 |
+
<nav class="no-print">
|
| 40 |
+
<div class="nav-content">
|
| 41 |
+
<a href="/" class="nav-title flex items-center">
|
| 42 |
+
<i data-feather="book" class="w-5 h-5 mr-2"></i>
|
| 43 |
+
XenForo Evolution
|
| 44 |
+
</a>
|
| 45 |
+
<div class="nav-links">
|
| 46 |
+
<a href="/analysis">Analyse</a>
|
| 47 |
+
<a href="/recommendations">Empfehlungen</a>
|
| 48 |
+
<a href="/contact">Kontakt</a>
|
| 49 |
+
</div>
|
| 50 |
+
</div>
|
| 51 |
+
</nav>
|
| 52 |
+
`;
|
| 53 |
+
}
|
| 54 |
+
}
|
| 55 |
+
customElements.define('custom-navbar', CustomNavbar);
|
index.html
CHANGED
|
@@ -1,19 +1,125 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="de">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>XenForo Evolution | Analyse & Optimierung</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 9 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 10 |
+
<link rel="stylesheet" href="style.css">
|
| 11 |
+
<script src="components/navbar.js"></script>
|
| 12 |
+
<script src="components/footer.js"></script>
|
| 13 |
+
</head>
|
| 14 |
+
<body class="bg-gray-50 min-h-screen flex flex-col">
|
| 15 |
+
<custom-navbar></custom-navbar>
|
| 16 |
+
|
| 17 |
+
<main class="flex-grow container mx-auto px-4 py-12">
|
| 18 |
+
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden">
|
| 19 |
+
<!-- Book Cover -->
|
| 20 |
+
<div class="bg-gradient-to-r from-blue-600 to-indigo-800 p-8 text-white">
|
| 21 |
+
<div class="flex items-center justify-between">
|
| 22 |
+
<div>
|
| 23 |
+
<span class="inline-block bg-white bg-opacity-20 px-3 py-1 rounded-full text-sm font-semibold">Analyse & Handbuch</span>
|
| 24 |
+
<h1 class="mt-4 text-4xl font-bold">XenForo Evolution</h1>
|
| 25 |
+
<p class="mt-2 text-xl opacity-90">Meine Einschätzung zu XenForo<br>und Optimierungsvorschläge</p>
|
| 26 |
+
</div>
|
| 27 |
+
<div class="hidden md:block">
|
| 28 |
+
<i data-feather="book" class="w-24 h-24 opacity-50"></i>
|
| 29 |
+
</div>
|
| 30 |
+
</div>
|
| 31 |
+
</div>
|
| 32 |
+
|
| 33 |
+
<!-- Content -->
|
| 34 |
+
<div class="p-8">
|
| 35 |
+
<section>
|
| 36 |
+
<h2 class="text-2xl font-bold text-gray-800 border-b pb-2 mb-6">Über dieses Buch</h2>
|
| 37 |
+
<p class="text-gray-600 leading-relaxed mb-6">
|
| 38 |
+
Dieses Handbuch präsentiert eine umfassende Analyse der XenForo Community Platform
|
| 39 |
+
und entwickelt konkrete Optimierungsvorschläge für zukunftsfähige Community-Software.
|
| 40 |
+
</p>
|
| 41 |
+
<div class="bg-blue-50 border-l-4 border-blue-500 p-4 mb-6">
|
| 42 |
+
<strong class="block text-blue-700 mb-1">Zitat des Autors</strong>
|
| 43 |
+
<p class="text-gray-700 italic">"Ein reiner Klon wäre verschenktes Potenzial. Die Kombination aus XenForos Stabilität mit modernen Features könnte ein echtes Alleinstellungsmerkmal schaffen!"</p>
|
| 44 |
+
</div>
|
| 45 |
+
</section>
|
| 46 |
+
|
| 47 |
+
<section class="mt-12">
|
| 48 |
+
<h2 class="text-2xl font-bold text-gray-800 border-b pb-2 mb-6">Hauptkapitel</h2>
|
| 49 |
+
<div class="space-y-4">
|
| 50 |
+
<div class="p-4 border rounded-lg hover:shadow-md transition-shadow">
|
| 51 |
+
<h3 class="font-semibold text-lg text-gray-800 flex items-center">
|
| 52 |
+
<i data-feather="bar-chart-2" class="mr-2 w-5 h-5"></i>
|
| 53 |
+
Teil 1: Bewertung der XenForo-Plattform
|
| 54 |
+
</h3>
|
| 55 |
+
<p class="text-gray-600 mt-2">Stärken, Schwächen und Lücken im Vergleich zu modernen Plattformen</p>
|
| 56 |
+
</div>
|
| 57 |
+
|
| 58 |
+
<div class="p-4 border rounded-lg hover:shadow-md transition-shadow bg-indigo-50 border-indigo-200">
|
| 59 |
+
<h3 class="font-semibold text-lg text-gray-800 flex items-center">
|
| 60 |
+
<i data-feather="zap" class="mr-2 w-5 h-5"></i>
|
| 61 |
+
Vier konkrete Optimierungsvorschläge
|
| 62 |
+
</h3>
|
| 63 |
+
<ul class="mt-2 space-y-1 text-gray-600 list-disc list-inside">
|
| 64 |
+
<li>Tiefe Telegram-Integration</li>
|
| 65 |
+
<li>KI-gestütztes Community-Engagement</li>
|
| 66 |
+
<li>Integrierte Gamification-Engine</li>
|
| 67 |
+
<li>Native Mobile Apps</li>
|
| 68 |
+
</ul>
|
| 69 |
+
</div>
|
| 70 |
+
|
| 71 |
+
<div class="p-4 border rounded-lg hover:shadow-md transition-shadow">
|
| 72 |
+
<h3 class="font-semibold text-lg text-gray-800 flex items-center">
|
| 73 |
+
<i data-feather="file-text" class="mr-2 w-5 h-5"></i>
|
| 74 |
+
Vollständiges Analyse- und Optimierungsdokument
|
| 75 |
+
</h3>
|
| 76 |
+
<p class="text-gray-600 mt-2">Strategische Überlegungen zur Umsetzung</p>
|
| 77 |
+
</div>
|
| 78 |
+
</div>
|
| 79 |
+
</section>
|
| 80 |
+
|
| 81 |
+
<section class="mt-12 bg-gray-50 p-6 rounded-lg">
|
| 82 |
+
<h2 class="text-2xl font-bold text-gray-800 mb-4">Technische Dokumentation</h2>
|
| 83 |
+
<div class="grid md:grid-cols-2 gap-6">
|
| 84 |
+
<div class="bg-white p-4 rounded-lg shadow-sm border">
|
| 85 |
+
<h3 class="font-semibold text-gray-800 flex items-center">
|
| 86 |
+
<i data-feather="code" class="mr-2 w-4 h-4"></i>
|
| 87 |
+
Feature-Matrix
|
| 88 |
+
</h3>
|
| 89 |
+
<table class="w-full mt-2 text-sm">
|
| 90 |
+
<tr class="border-b">
|
| 91 |
+
<td class="py-2 text-gray-600">PWA statt Apps</td>
|
| 92 |
+
<td class="py-2 text-red-500">Nachteil</td>
|
| 93 |
+
</tr>
|
| 94 |
+
<tr class="border-b">
|
| 95 |
+
<td class="py-2 text-gray-600">Telegram-Integration</td>
|
| 96 |
+
<td class="py-2 text-green-500">Basis vorhanden</td>
|
| 97 |
+
</tr>
|
| 98 |
+
<tr class="border-b">
|
| 99 |
+
<td class="py-2 text-gray-600">KI-Moderation</td>
|
| 100 |
+
<td class="py-2 text-red-500">Fehlt</td>
|
| 101 |
+
</tr>
|
| 102 |
+
</table>
|
| 103 |
+
</div>
|
| 104 |
+
<div class="bg-white p-4 rounded-lg shadow-sm border">
|
| 105 |
+
<h3 class="font-semibold text-gray-800 flex items-center">
|
| 106 |
+
<i data-feather="git-merge" class="mr-2 w-4 h-4"></i>
|
| 107 |
+
Implementation
|
| 108 |
+
</h3>
|
| 109 |
+
<p class="mt-2 text-sm text-gray-600">
|
| 110 |
+
Optionen: Neuentwicklung vs. XenForo-Erweiterung.
|
| 111 |
+
Priorisierung von Features und Entwicklungspfad.
|
| 112 |
+
</p>
|
| 113 |
+
</div>
|
| 114 |
+
</div>
|
| 115 |
+
</section>
|
| 116 |
+
</div>
|
| 117 |
+
</div>
|
| 118 |
+
</main>
|
| 119 |
+
|
| 120 |
+
<custom-footer></custom-footer>
|
| 121 |
+
<script>feather.replace();</script>
|
| 122 |
+
<script src="script.js"></script>
|
| 123 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 124 |
+
</body>
|
| 125 |
+
</html>
|
script.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// DOM Ready function
|
| 2 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 3 |
+
// Any initialization code can go here
|
| 4 |
+
|
| 5 |
+
// Print button functionality (if we add one later)
|
| 6 |
+
const printButton = document.getElementById('print-button');
|
| 7 |
+
if(printButton) {
|
| 8 |
+
printButton.addEventListener('click', function() {
|
| 9 |
+
window.print();
|
| 10 |
+
});
|
| 11 |
+
}
|
| 12 |
+
});
|
| 13 |
+
|
| 14 |
+
// Track analytics events (just placeholder)
|
| 15 |
+
function trackEvent(eventName) {
|
| 16 |
+
console.log('Event tracked:', eventName);
|
| 17 |
+
// In a real implementation, this would send to GA or similar
|
| 18 |
+
}
|
style.css
CHANGED
|
@@ -1,28 +1,41 @@
|
|
| 1 |
-
|
| 2 |
-
padding: 2rem;
|
| 3 |
-
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 4 |
-
}
|
| 5 |
-
|
| 6 |
-
h1 {
|
| 7 |
-
font-size: 16px;
|
| 8 |
-
margin-top: 0;
|
| 9 |
-
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
margin-top: 5px;
|
| 16 |
-
}
|
| 17 |
-
|
| 18 |
-
.card {
|
| 19 |
-
max-width: 620px;
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
+
body {
|
| 4 |
+
font-family: 'Inter', sans-serif;
|
| 5 |
+
line-height: 1.6;
|
| 6 |
+
color: #374151;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
}
|
| 8 |
|
| 9 |
+
/* Print-specific styles */
|
| 10 |
+
@media print {
|
| 11 |
+
body {
|
| 12 |
+
background: white;
|
| 13 |
+
color: black;
|
| 14 |
+
font-size: 12pt;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
.no-print {
|
| 18 |
+
display: none !important;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
main {
|
| 22 |
+
padding: 0;
|
| 23 |
+
margin: 0;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
section {
|
| 27 |
+
page-break-inside: avoid;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
h1, h2, h3 {
|
| 31 |
+
page-break-after: avoid;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
table {
|
| 35 |
+
page-break-inside: auto;
|
| 36 |
+
}
|
| 37 |
+
tr {
|
| 38 |
+
page-break-inside: avoid;
|
| 39 |
+
page-break-after: auto;
|
| 40 |
+
}
|
| 41 |
+
}
|