From 286e5f9d32a41cda70650c417733f85290fa26e0 Mon Sep 17 00:00:00 2001
From: Giovanni Liva <giovanni.liva@dynatrace.com>
Date: Thu, 21 Dec 2023 13:43:52 +0100
Subject: [PATCH] remove redirect and re-use the old landpage (#1664)

Signed-off-by: Giovanni Liva <giovanni.liva@dynatrace.com>
---
 layouts/index.html | 75 ++++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 69 insertions(+), 6 deletions(-)

diff --git a/layouts/index.html b/layouts/index.html
index 20e96dca3..07879a21a 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,6 +1,69 @@
-<html>
-<head>
-<meta http-equiv="refresh" content="0; url=https://lifecycle.keptn.sh">
-</head>
-<body></body>
-</html>
\ No newline at end of file
+{{ define "title" }}
+keptn | Cloud-native application life-cycle orchestration
+{{ end }}
+
+{{ define "header_css" }}
+{{ end }}
+
+{{ define "header_classes" }}
+header-transparent
+{{ end }}
+
+{{ define "header_js" }}
+<!-- script to include would go here 
+<script src="https://cdn.jsdelivr.net/npm/typeit@6.0.3/dist/typeit.min.js" />
+-->
+{{ end }}
+
+{{ define "body_classes" }}
+page-home
+{{ end }}
+
+{{ define "meta" }}
+<meta property="og:description" content="Keptn automates observability, SLO-driven multi-stage delivery, and operations">
+<meta property="og:title" content="Keptn - Cloud-native application life-cycle orchestration.">
+<meta property="og:image" content="https://keptn.sh/favicon.png">
+<meta property="og:url" content="https://keptn.sh/index.html">
+<meta name="twitter:card" content="summary_large_image">
+{{ end }}
+
+{{ define "main" }}
+
+{{/* Announcements */}}
+{{ partial "announcement.html" . }}
+
+{{/* Intro */}}
+{{ partial "intro.html" . }}
+
+<!--
+{{/* Intro */}}
+{{ partial "carousel.html" . }}
+-->
+
+{{/* Usage */}}
+{{ partial "usage.html" . }}
+
+{{/* Delivery */}}
+{{ partial "delivery.html" . }}
+
+{{/* Remediation */}}
+{{ partial "remediation.html" . }}
+
+{{/* Key Capabilities */}}
+{{ partial "capabilities.html" . }}
+
+{{/* Happy Users */}}
+{{ partial "happy-users.html" . }}
+
+{{/* Tools */}}
+{{ partial "tools.html" . }}
+
+{{/* Contact */}}
+{{ partial "get-started.html" . }}
+
+{{/* Copy Indicator */}}
+{{ partial "copy-indicator.html" . }}
+{{ end }}
+
+{{ define "footer_js" }}
+{{ end }}
\ No newline at end of file