templates/legal/imprint.html.twig line 1

Open in your IDE?
  1. {% extends 'legal/layout.html.twig' %}
  2. {% block title %}Imprint – TitanNode{% endblock %}
  3. {% block legal_content %}
  4. <h1 class="text-4xl font-extrabold text-gray-900 dark:text-white mb-8 tracking-tight">Imprint</h1>
  5. <div class="space-y-8 text-gray-600 dark:text-gray-400 prose dark:prose-invert max-w-none">
  6. <section>
  7. <h2 class="text-xl font-bold text-gray-900 dark:text-white mb-4 flex items-center gap-3">
  8. <span class="w-8 h-8 rounded-lg bg-primary-100 dark:bg-primary-900/40 text-primary-600 dark:text-primary-400 flex items-center justify-center text-sm">
  9. <i class="fa-solid fa-building"></i>
  10. </span>
  11. Provider Information (§ 5 DDG)
  12. </h2>
  13. <p class="leading-relaxed">
  14. TitanNode Project<br>
  15. Represented by: Phillipp Jäger<br>
  16. Karl-Liebknecht-Ring 2<br>
  17. 06679 Hohenmölsen
  18. </p>
  19. </section>
  20. <section>
  21. <h2 class="text-xl font-bold text-gray-900 dark:text-white mb-4 flex items-center gap-3">
  22. <span class="w-8 h-8 rounded-lg bg-indigo-100 dark:bg-indigo-900/40 text-indigo-600 dark:text-indigo-400 flex items-center justify-center text-sm">
  23. <i class="fa-solid fa-at"></i>
  24. </span>
  25. Contact
  26. </h2>
  27. <p class="leading-relaxed">
  28. Email: support@titannode.com<br>
  29. Phone: [Your Phone Number]<br>
  30. Website: www.titannode.com
  31. </p>
  32. </section>
  33. <section>
  34. <h2 class="text-xl font-bold text-gray-900 dark:text-white mb-4 flex items-center gap-3">
  35. <span class="w-8 h-8 rounded-lg bg-blue-100 dark:bg-blue-900/40 text-blue-600 dark:text-blue-400 flex items-center justify-center text-sm">
  36. <i class="fa-solid fa-scale-balanced"></i>
  37. </span>
  38. Legal Notice
  39. </h2>
  40. <p class="leading-relaxed font-semibold mb-2">
  41. § 5 DDG Information
  42. </p>
  43. <p class="leading-relaxed">
  44. As a service provider according to § 7 (1) DDG, we are responsible for our own content on these pages in accordance with general laws. According to §§ 8 to 10 DDG, however, we as a service provider are not obligated to monitor transmitted or stored external information or to investigate circumstances that indicate illegal activity.
  45. </p>
  46. </section>
  47. <section>
  48. <h3 class="text-lg font-bold text-gray-900 dark:text-white mb-4">Copyright</h3>
  49. <p class="leading-relaxed">
  50. The content and works created by the site operators on these pages are subject to copyright law. Duplication, processing, distribution, and any kind of exploitation outside the limits of copyright law require the written consent of the respective author or creator.
  51. </p>
  52. </section>
  53. </div>
  54. {% endblock %}