Skip to content

Commit 8c206b7

Browse files
committed
Add success stories list page and navigation entry
1 parent 900efec commit 8c206b7

File tree

8 files changed

+58
-9
lines changed

8 files changed

+58
-9
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: "Erfolgsgeschichten"
3+
description: "Erfahre, wie Organisationen und Teams Cryptomator nutzen, um ihre sensiblen Daten in der Cloud mit clientseitiger Verschlüsselung zu schützen."
4+
---
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: "Success Stories"
3+
description: "Discover how organizations and teams use Cryptomator to protect their sensitive data in the cloud with client-side encryption."
4+
---

content/success-stories/walbusch.de.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22
title: "Walbusch Erfolgsgeschichte"
33
type: "success-stories"
44

5+
# Card Display
6+
cardtitle: "Walbusch: Sichere Daten mit Cryptomator Hub"
7+
cardtext: "Traditionsreiches Modeunternehmen migrierte von Boxcryptor, um sensible Daten mit Ende-zu-Ende-Verschlüsselung zu schützen."
8+
cardimage: /img/success-stories/walbusch.png
9+
510
# Company Info
611
company: "Walbusch"
7-
industry: "Textil und<br>Bekleidung"
8-
location: "Solingen,<br>Deutschland"
9-
company_size: "1000+<br>Mitarbeitende"
12+
industry: "Textil und Bekleidung"
13+
location: "Solingen, Deutschland"
14+
company_size: "1000+ Mitarbeitende"
1015

1116
# Hero Section
1217
hero_description: "Walbusch setzt nach der Aufkündigung von Boxcryptor auf Cryptomator Hub, um sensible Daten mit AES-256-Verschlüsselung sicher und transparent zu verwalten."
@@ -62,4 +67,4 @@
6267
Walbusch hebt hervor, dass sich Cryptomator Hub im Vergleich zu anderen Sicherheitslösungen durch seine einfache Integration, hohe Flexibilität und volle Transparenz auszeichnet. Besonders geschätzt wird, dass die Lösung als Open-Source-Software nachvollziehbar und vertrauenswürdig ist und mit einer starken AES-256-Verschlüsselung die Datensicherheit zuverlässig gewährleistet.
6368

6469
Für Walbusch stellt Cryptomator Hub daher nicht nur eine unmittelbare Lösung für aktuelle Herausforderungen dar, sondern auch eine zukunftsweisende Software für die langfristige Absicherung vertraulicher Unternehmensdaten. Cryptomator Hub bietet Sicherheit und Stabilität im täglichen Arbeiten und fügt sich dabei nahtlos in die gewohnten Prozesse und gängigen Tools ein.
65-
---
70+
---

content/success-stories/walbusch.en.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22
title: "Walbusch Success Story"
33
type: "success-stories"
44

5+
# Card Display
6+
cardtitle: "Walbusch: Secure Data with Cryptomator Hub"
7+
cardtext: "Traditional fashion company migrated from Boxcryptor to protect sensitive data with end-to-end encryption."
8+
cardimage: /img/success-stories/walbusch.png
9+
510
# Company Info
611
company: "Walbusch"
7-
industry: "Textile and<br>Clothing"
8-
location: "Solingen,<br>Germany"
9-
company_size: "1000+<br>employees"
12+
industry: "Textile and Clothing"
13+
location: "Solingen, Germany"
14+
company_size: "1000+ employees"
1015

1116
# Hero Section
1217
hero_description: "Following the termination of Boxcryptor, Walbusch is now relying on Cryptomator Hub to manage sensitive data securely and transparently using AES-256 encryption."
@@ -62,4 +67,4 @@
6267
Walbusch emphasizes that Cryptomator Hub stands out from other security solutions thanks to its easy integration, high flexibility, and complete transparency. The company particularly appreciates the fact that the solution is open-source software, which makes it transparent and trustworthy, and that it reliably ensures data security with strong AES-256 encryption.
6368

6469
For Walbusch, Cryptomator Hub is therefore not only an immediate solution to current challenges, but also forward-looking software for the long-term protection of confidential company data. Cryptomator Hub offers security and stability in everyday work and integrates seamlessly into familiar processes and common tools.
65-
---
70+
---

data/nav.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
- Path: "/comparisons"
2121
- Path: "/compliance"
2222
- Separator: true
23+
- Path: "/success-stories"
2324
- Path: "/coop"
2425
- Path: "/enterprise"
2526
- Separator: true

layouts/success-stories/list.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{{ define "main" }}
2+
<div class="container py-12">
3+
<header class="mb-6">
4+
<h1 class="font-h1 mb-8">{{ .Title }}</h1>
5+
<p class="lead">{{ .Description }}</p>
6+
</header>
7+
8+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
9+
{{ range .Pages }}
10+
<article class="white-box">
11+
<figure class="border-b border-primary h-48 w-full">
12+
<a href="{{ .RelPermalink }}">
13+
{{ if .Params.cardimage }}
14+
<img class="size-full object-cover" src="{{ .Params.cardimage }}" alt="{{ .Title }}">
15+
{{ else }}
16+
<img class="size-full object-contain p-6" src="/img/logo.svg" alt="{{ .Title }}">
17+
{{ end }}
18+
</a>
19+
</figure>
20+
<div class="p-4">
21+
<h2 class="font-h2 mb-4">
22+
<a class="text-link" href="{{ .RelPermalink }}">{{ .Params.cardtitle }}</a>
23+
</h2>
24+
<p class="font-p">{{ .Params.cardtext }}</p>
25+
</div>
26+
</article>
27+
{{ end }}
28+
</div>
29+
</div>
30+
{{ end }}

layouts/success-stories/single.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,4 @@ <h2 class="font-h2 mb-4">{{ i18n "success_story_cta_title" . }}</h2>
145145
</div>
146146
</div>
147147
</section>
148-
{{ end }}
148+
{{ end }}
-575 KB
Loading

0 commit comments

Comments
 (0)