Kimberley Mackenzie e35e01f06f
Prettier Spike (#1517)
* Add Prettier set-up (no formatting in this commit).

* Manual fixes for Prettier issues.

* Run Prettier fix on non-markdown files.

* Incorporate Prettier PR feedback - update commands, re-apply new yaml styles, add editor config.

* Remove deprecated config item.

* Add dependency on prettier-plugin-go-template.

* reconcile changed file with prettier formatting.

* Add git blame ignore revs file to include Prettier formatting commit.

* Fix format issue with merge conflict.
2022-06-01 10:58:20 -07:00

57 lines
2.6 KiB
HTML

{{ define "hero" }}
{{ partial "hero.html" (dict "title" .Title) }}
{{ end }}
{{ define "main" }}
<nav class="nav-section-sticky shadow">
<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">
{{ .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">
{{ 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 }}" />
</a>
{{ else }}
<img src="{{ .Params.customer_logo }}" class="{{ $image_classes }}" alt="{{ $image_title }}" />
{{ 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.
</p>
</div>
</section>
{{ partial "learnmore-contactus.html" . }}
{{ end }}