This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove redirect and re-use the old landpage (#1664)
Signed-off-by: Giovanni Liva <giovanni.liva@dynatrace.com>
- Loading branch information
Showing
1 changed file
with
69 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,69 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="refresh" content="0; url=https://lifecycle.keptn.sh"> | ||
</head> | ||
<body></body> | ||
</html> | ||
{{ 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 }} |