* Update copy on home page * Add automation api layout * Fix typo * Add some examples * Address some feedback * Update homepage with recent changes * Update slot machine copy * Address feedback * Fix headline * Add templates cta * Make label smaller * Update testimonials * Update themes/default/content/_index.md Co-authored-by: George Huang <george@pulumi.com> * Update themes/default/content/_index.md * Apply suggestions from code review Thanks Christian Co-authored-by: Christian Nunciato <c@nunciato.org> * Apply suggestions from code review Co-authored-by: Christian Nunciato <c@nunciato.org> Co-authored-by: aaronkao <aaronkao@users.noreply.github.com> * Address feedback * Update themes/default/content/_index.md Co-authored-by: George Huang <george@pulumi.com> * Add java example for eks * Address auto api feedback * Tighten up some padding and code, use text-lg to align with other sections (#2434) Co-authored-by: aaronkao <aaronkao@users.noreply.github.com> Co-authored-by: George Huang <george@pulumi.com> Co-authored-by: Christian Nunciato <c@nunciato.org>
19 lines
672 B
HTML
19 lines
672 B
HTML
{{ if eq .checked "true" }}
|
|
<input type="checkbox" class="absolute hidden" id="{{ .text }}" checked="checked" />
|
|
{{ else }}
|
|
<input type="checkbox" class="absolute hidden" id="{{ .text }}" />
|
|
{{ end }}
|
|
|
|
|
|
<label for="{{ .text }}" class="accordion-label">
|
|
{{ if eq .large_header true }}
|
|
<h5 class="mt-2 w-2/3">{{ .text }}</h5>
|
|
{{ else }}
|
|
<h6 class="mt-2 w-2/3">{{ .text }}</h6>
|
|
{{ end }}
|
|
<div class="flex flex-grow justify-end items-center">
|
|
<span class="closed-accordion">{{ partial "icons/accordion-closed" }}</span>
|
|
<span class="open-accordion hidden">{{ partial "icons/accordion-open" }}</span>
|
|
</div>
|
|
</label>
|