From 6feb1ff24d6acfb6ad1135ec755b0822ea9cdbfa Mon Sep 17 00:00:00 2001 From: Paul Payne Date: Sun, 13 Jul 2025 18:11:34 -0700 Subject: [PATCH] Basic homepage. --- assets/wild-cloud.svg | 24 ++++++++++++++++++++++++ content/_index.md | 15 ++++++++++----- layouts/home.html | 14 ++++++++++++++ 3 files changed, 48 insertions(+), 5 deletions(-) create mode 100644 assets/wild-cloud.svg create mode 100644 layouts/home.html diff --git a/assets/wild-cloud.svg b/assets/wild-cloud.svg new file mode 100644 index 0000000..a77d9fa --- /dev/null +++ b/assets/wild-cloud.svg @@ -0,0 +1,24 @@ + + + + + + + + + diff --git a/content/_index.md b/content/_index.md index 9c73563..6ca9efa 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,7 +1,12 @@ -+++ -title = 'Welcome to Your Wild Cloud!' -+++ +--- +title: Wild Cloud +description: Wild Cloud is an Open Source, self-hosted, sovereign cloud platform for hosting your applications and services. +--- -Coming Soon. +![Your Wild Cloud Logo](wild-cloud.svg) -[Get started](/get-started/) +```bash {class="my-class" id="my-codeblock" lineNos=inline tabWidth=2} +wild-setup +``` + +Coming soon... \ No newline at end of file diff --git a/layouts/home.html b/layouts/home.html new file mode 100644 index 0000000..737e90b --- /dev/null +++ b/layouts/home.html @@ -0,0 +1,14 @@ +{{ define "main" }} +
+
+ {{ if .Params.showBreadcrumbs | default (.Site.Params.article.showBreadcrumbs | default false) }} + {{ partial "breadcrumbs.html" . }} + {{ end }} +
+
+ {{ .Content }} +
+ +
+{{ end }}