We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7a086c commit 417422eCopy full SHA for 417422e
layouts/_default/list.html
@@ -11,11 +11,19 @@
11
{{ end }}
12
13
</section>
14
- <h1>{{ .Title }}</h1>
+ <div class="list-header-container">
15
+ <img src="/images/icons/{{ .Params.logo | default "NGINX-product-icon.svg" }}">
16
+ <div class="list-header-title">
17
+ <h1>{{ .Title }}</h1>
18
+ {{ if index .Params "nd-subtitle" }}
19
+ <p>{{ index .Params "nd-subtitle" | markdownify }}</p>
20
+ {{ end }}
21
+ </div>
22
23
24
{{ partial "banner" . }}
25
- {{ $hasCustomContent := .Params.hasCustomContent | default false }}
26
+ {{ $hasCustomContent := index .Params "nd-landing-page" | default false }}
27
{{ if $hasCustomContent }}
28
{{ .Content }}
29
{{ else }}
0 commit comments