Skip to content

Commit 32fe979

Browse files
committed
Enhance landing page and mobile navigation
- Added mobile navigation toggle and sidebar - Updated CSS for responsive design - Added new sections on the main page - Enhanced the layout and content structure for better engagement.
1 parent 2e2794c commit 32fe979

28 files changed

+2507
-479
lines changed

.hintrc

Lines changed: 0 additions & 20 deletions
This file was deleted.

content/_index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
---
22
title: "Validated Patterns"
3+
youtube_id: "dGsoUNjHYOw"
4+
video_title: "Watch how Validated Patterns enhance your cloud-native applications"
5+
video_description: "Our GitOps-driven framework simplifies complex deployments, ensuring your applications are production-ready from day one. Watch the video to see how it works."
36
---
47

58
![Logo](/images/logo.png)
69

7-
# Reference architectures with added value
10+
# Deploy complex solutions with unprecedented speed and confidence.
811

9-
Validated Patterns are an evolution of how you deploy applications in a hybrid cloud. With a pattern, you can automatically deploy a full application stack through a GitOps-based framework. With this framework, you can create business-centric use cases while maintaining a level of Continuous Integration (CI) over your application.
12+
Go beyond traditional reference architectures. Validated Patterns deliver automated, rigorously tested application stacks for your hybrid cloud, powered by GitOps.

layouts/_default/baseof.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<!DOCTYPE html>
22
<html>
33
{{- partial "head.html" . -}}
4-
<body{{ with .File }} data-github-file="{{ .Path }}"{{ end }}>
4+
<body>
55
<div class="pf-c-page">
66
{{- partial "header.html" . -}}
77
{{- block "main" . }}
88
<!-- get all the things from the content files -->
99
{{- end }}
1010
</div>
1111
<script src="{{ "js/codeblock.js" | relURL }}"></script>
12-
<script src="{{ "js/select-report-issue-popup.js" | relURL }}"></script>
12+
<script src="{{ "js/mobile-nav.js" | relURL }}"></script>
1313
</body>
1414
<!-- Uncomment when you have sorted out the feedback partials option
1515
<body>

layouts/blog/list.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
<main class="pf-c-page__main" id="maincontent">
1212
<section class="pf-c-page__main-section">
13+
<!-- Sidebar toggle for mobile -->
14+
<div class="sidebar-toggle-container">
15+
{{ partial "sidebar-toggle.html" . }}
16+
</div>
1317
<div class="pf-l-grid__item pf-m-9-col">
1418
<div class="pf-u-text-align-center">
1519
<div class="pf-c-content" style="--pf-c-content--FontSize: 1rem;">

layouts/ci/single.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
</div>
1111
<main class="pf-c-page__main">
1212
<section class="pf-c-page__main-section">
13+
<!-- Sidebar toggle for mobile -->
14+
<div class="sidebar-toggle-container">
15+
{{ partial "sidebar-toggle.html" . }}
16+
</div>
1317
<div class="pf-u-display-flex">
1418
<div class="pf-c-content">
1519
<h1>{{- .Title -}}</h1>

layouts/contribute/list.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
<main class="pf-c-page__main">
99
<section class="pf-c-page__main-section">
10+
<!-- Sidebar toggle for mobile -->
11+
<div class="sidebar-toggle-container">
12+
{{ partial "sidebar-toggle.html" . }}
13+
</div>
1014
<div class="pf-l-grid__item pf-m-9-col">
1115
<div class="pf-u-text-align-center">
1216
<div class="pf-c-content" style="--pf-c-content--FontSize: 1rem;">

layouts/contribute/single.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
</div>
88
<main class="pf-c-page__main" tabindex="0" data-bs-spy="scroll" data-bs-target="#TableOfContents" data-bs-offset="50">
99
<section class="pf-c-page__main-section pf-m-fill">
10+
<!-- Sidebar toggle for mobile -->
11+
<div class="sidebar-toggle-container">
12+
{{ partial "sidebar-toggle.html" . }}
13+
</div>
1014
<div class="pf-u-display-flex">
1115
<div class="pf-c-content">
1216
{{ .Content }}

layouts/index.html

Lines changed: 441 additions & 27 deletions
Large diffs are not rendered by default.

layouts/learn/list.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
<main class="pf-c-page__main">
99
<section class="pf-c-page__main-section">
10+
<!-- Sidebar toggle for mobile -->
11+
<div class="sidebar-toggle-container">
12+
{{ partial "sidebar-toggle.html" . }}
13+
</div>
1014
<div class="pf-l-grid__item pf-m-9-col">
1115
<div class="pf-u-text-align-center">
1216
<div class="pf-c-content" style="--pf-c-content--FontSize: 1rem;">

layouts/learn/single.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
</div>
88
<main class="pf-c-page__main" tabindex="0" data-bs-spy="scroll" data-bs-target="#TableOfContents" data-bs-offset="50">
99
<section class="pf-c-page__main-section pf-m-fill">
10+
<!-- Sidebar toggle for mobile -->
11+
<div class="sidebar-toggle-container">
12+
{{ partial "sidebar-toggle.html" . }}
13+
</div>
1014
<div class="pf-u-display-flex">
1115
<div class="pf-c-content">
1216
{{ .Content }}

0 commit comments

Comments
 (0)