2021-02-11 10:30:37 -08:00
|
|
|
{{ define "hero" }}
|
|
|
|
<header>
|
|
|
|
<div class="container mx-auto p-4 text-center m-24 mb-12 max-w-5xl">
|
|
|
|
<h1 class="text-5xl">{{ .Params.hero.title }}</h1>
|
|
|
|
<p class="mt-10 text-2xl">{{ .Params.hero.description }}</p>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "main" }}
|
|
|
|
<section id="backgrounds" class="container mx-auto">
|
|
|
|
{{ range .Params.backgrounds }}
|
|
|
|
<div class="flex flex-col lg:flex-row my-4 lg:my-12">
|
|
|
|
<div class="w-full mb-12 order-last lg:order-first lg:mb-0 lg:w-5/12 p-4 lg:px-16">
|
|
|
|
<h2 class="text-2xl font-bold">{{ .name }}</h2>
|
|
|
|
<p class="mb-12">{{ .description }}</p>
|
2022-06-01 10:58:20 -07:00
|
|
|
<a href="{{ .image }}" class="btn-primary" download> Download </a>
|
2021-02-11 10:30:37 -08:00
|
|
|
</div>
|
|
|
|
<div class="w-full order-first lg:order-last lg:w-7/12">
|
|
|
|
<img src="{{ .image }}" alt="{{ .name }}" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
|
|
|
|
2021-04-20 00:37:26 -07:00
|
|
|
<section id="get-started" class="py-16 px-4 lg:px-0">
|
2021-02-11 10:30:37 -08:00
|
|
|
<div class="container mx-auto max-w-5xl md:flex my-8 align-top justify-center text-center">
|
|
|
|
<div class="mr-4">
|
|
|
|
<h2>Get Started with Pulumi</h2>
|
2022-06-01 10:58:20 -07:00
|
|
|
<p class="text-lg">Use Pulumi's open source SDK to create, deploy, and manage infrastructure on any cloud.</p>
|
2021-02-11 10:30:37 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container mx-auto max-w-5xl">
|
|
|
|
<div class="flex max-w-full">
|
2022-06-01 10:58:20 -07:00
|
|
|
<a
|
|
|
|
id="get-started-aws"
|
|
|
|
class="btn bg-white border border-gray-300 hover:bg-white hover:border-gray-400 p-5 mb-5 flex justify-center w-1/2 mr-4"
|
2023-05-15 15:25:28 -07:00
|
|
|
href="{{ relref . "/docs/clouds/aws/get-started" }}"
|
2022-06-01 10:58:20 -07:00
|
|
|
track-click
|
|
|
|
>
|
|
|
|
<img class="h-10" src="/logos/tech/aws.svg" alt="AWS" />
|
2021-02-11 10:30:37 -08:00
|
|
|
</a>
|
2022-06-01 10:58:20 -07:00
|
|
|
<a
|
|
|
|
id="get-started-azure"
|
|
|
|
class="btn bg-white border border-gray-300 hover:bg-white hover:border-gray-400 p-5 mb-5 flex justify-center w-1/2 ml-4"
|
2023-05-15 15:25:28 -07:00
|
|
|
href="{{ relref . "/docs/clouds/azure/get-started" }}"
|
2022-06-01 10:58:20 -07:00
|
|
|
track-click
|
|
|
|
>
|
|
|
|
<img class="h-10" src="/logos/tech/azure.svg" alt="Azure" />
|
2021-02-11 10:30:37 -08:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-row max-w-full">
|
2022-06-01 10:58:20 -07:00
|
|
|
<a
|
|
|
|
id="get-started-gcp"
|
|
|
|
class="btn bg-white border border-gray-300 hover:bg-white hover:border-gray-400 p-5 mb-5 flex justify-center w-1/2 mr-4"
|
2023-05-15 15:25:28 -07:00
|
|
|
href="{{ relref . "/docs/clouds/gcp/get-started" }}"
|
2022-06-01 10:58:20 -07:00
|
|
|
track-click
|
|
|
|
>
|
|
|
|
<img class="h-10" src="/logos/tech/gcp.svg" alt="Google Cloud" />
|
2021-02-11 10:30:37 -08:00
|
|
|
</a>
|
2022-06-01 10:58:20 -07:00
|
|
|
<a
|
|
|
|
id="get-started-kubernetes"
|
|
|
|
class="btn bg-white border border-gray-300 hover:bg-white hover:border-gray-400 p-5 mb-5 flex justify-center w-1/2 ml-4"
|
2023-05-15 15:25:28 -07:00
|
|
|
href="{{ relref . "/docs/clouds/kubernetes/get-started" }}"
|
2022-06-01 10:58:20 -07:00
|
|
|
track-click
|
|
|
|
>
|
|
|
|
<img class="h-10" src="/logos/tech/k8s.svg" alt="Kubernetes" />
|
2021-02-11 10:30:37 -08:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|