Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
2.6 KiB
HTML
Raw Permalink Normal View History

2020-02-19 15:13:31 -08:00
{{ define "hero" }}
{{ partial "hero.html" (dict "title" .Title) }}
2020-02-19 15:13:31 -08:00
{{ end }}
{{ define "main" }}
<nav class="nav-section-sticky shadow">
2020-02-19 15:13:31 -08:00
<div class="container mx-auto">
<ul>
{{ range .Params.sections }}
<li><a href="#{{ .anchor }}">{{ .label }}</a></li>
{{ end }}
</ul>
</div>
</nav>
<section id="executive-summary" class="mt-8 py-8 px-4 md:px-0">
<div class="container mx-auto max-w-4xl py-8 border-b border-gray-300">
<h2>Executive Summary</h2>
<p class="description">
2020-02-19 15:13:31 -08:00
{{ .Params.exec_summary | markdownify }}
</p>
</div>
</section>
<section class="px-4 md:px-0">
<div class="container mx-auto max-w-4xl mb-4 description">
2020-02-19 15:13:31 -08:00
{{ if .Params.customer_logo }}
{{ $image_classes := "inline-block md:float-right max-w-xs md:pl-8 pb-2" }}
{{ $image_title := print (or .Params.customer_name "Customer") " logo" }}
{{ if .Params.customer_url }}
<a href="{{ .Params.customer_url }}" class="{{ $image_classes }}">
<img src="{{ .Params.customer_logo }}" class="{{ $image_classes }}" alt="{{ $image_title }}" />
2020-02-19 15:13:31 -08:00
</a>
{{ else }}
<img src="{{ .Params.customer_logo }}" class="{{ $image_classes }}" alt="{{ $image_title }}" />
2020-02-19 15:13:31 -08:00
{{ end }}
{{ end }}
{{ .Content }}
</div>
</section>
<section class="mt-8 pb-8 px-4 md:px-0">
<div class="container mx-auto max-w-4xl py-8 border-t border-gray-300">
<h3>Pulumi Corporation</h3>
<p>
Pulumi's cloud engineering platform brings infrastructure, developer, and security teams together through a unified software engineering process that tames cloud
complexity and accelerates innovation. Using the Pulumi platform, teams can build, deploy, and manage modern cloud applications faster and with more confidence,
using any language, any architecture and any cloud. Pulumi lets teams build Universal Infrastructure as Code using popular programming languages (Python,
JavaScript, TypeScript, Go, .NET/C#, Java) and markup languages (YAML, JSON, CUE). It enables deploying infrastructure and applications together through a unified
delivery process. Finally, teams can manage cloud applications with Policy as Code, better visibility, and controls.
2020-02-19 15:13:31 -08:00
</p>
</div>
</section>
{{ partial "learnmore-contactus.html" . }}
{{ end }}