18 lines
579 B
HTML
18 lines
579 B
HTML
{{ $templates := where (where .Site.Pages ".Type" "templates") ".Layout" "overview" }}
|
|
|
|
|
|
<div class="font-display text-xl">
|
|
<a href="{{ relref . "/templates" }} ">Pulumi Templates</a>
|
|
</div>
|
|
<ul class="text-sm p-0 list-none">
|
|
{{ range $template := sort $templates ".Params.weight" "asc" }}
|
|
<li class="">
|
|
{{ with $template }}
|
|
<div class="text-base">
|
|
<a class="text-blue-600" href="{{ relref . $template.RelPermalink }}">{{ .Title }}</a>
|
|
</div>
|
|
{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|