about summary refs log tree commit diff stats
path: root/frontend/templates/blocks/options.gotmpl
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/templates/blocks/options.gotmpl')
-rw-r--r--frontend/templates/blocks/options.gotmpl98
1 files changed, 52 insertions, 46 deletions
diff --git a/frontend/templates/blocks/options.gotmpl b/frontend/templates/blocks/options.gotmpl
index f89a83d..2f9d88a 100644
--- a/frontend/templates/blocks/options.gotmpl
+++ b/frontend/templates/blocks/options.gotmpl
@@ -1,53 +1,59 @@
 {{ template "results" . }}
 {{ define "results" }}
-  {{- range .Results }}
-    <details id="{{ .Option }}">
-      <summary>
-        {{ .Option }}
-      </summary>
-      <p>
-        {{ markdown .Description }}
-      </p>
-      <dl>
-        {{- with .Type }}
-          <dt>Type</dt>
-          <dd><code>{{ . }}</code></dd>
-        {{- end }}
-        {{- with .Default }}
-          <dt>Default</dt>
-          <dd>
-            {{- if .Markdown }}
-              {{ .Markdown }}
-            {{- else }}
-              <pre><code>{{ .Text }}</code></pre>
+  {{- with .Results }}
+    {{- range .Results }}
+      <details id="{{ .Option }}">
+        <summary>
+          {{ .Option }}
+        </summary>
+        <p>
+          {{ markdown .Description }}
+        </p>
+        <dl>
+          {{- with .Type }}
+            <dt>Type</dt>
+            <dd><code>{{ . }}</code></dd>
+          {{- end }}
+          {{- with .Default }}
+            {{- if or .Text .Markdown }}
+              <dt>Default</dt>
+              <dd>
+                {{- if .Markdown }}
+                  {{ markdown .Markdown }}
+                {{- else }}
+                  <pre><code>{{ .Text }}</code></pre>
+                {{- end }}
+              </dd>
+            {{- end }}
+          {{- end }}
+          {{- with .Example }}
+            {{- if or .Text .Markdown }}
+              <dt>Example</dt>
+              <dd>
+                {{- if .Markdown }}
+                  {{ markdown .Markdown }}
+                {{- else }}
+                  <pre><code>{{ .Text }}</code></pre>
+                {{- end }}
+              </dd>
             {{- end }}
-          </dd>
-        {{- end }}
-        {{- with .Example }}
-          {{- if or .Text .Markdown }}
-            <dt>Example</dt>
-            <dd>
-              {{- if .Markdown }}
-                {{ .Markdown }}
-              {{- else }}
-                <pre><code>{{ .Text }}</code></pre>
-              {{- end }}
-            </dd>
           {{- end }}
-        {{- end }}
-        {{- with .RelatedPackages }}
-          <dt>Related Packages</dt>
-          <dd>{{ . }}</dd>
-        {{- end }}
-        {{- with .Declarations }}
-          <dt>Declared</dt>
-          {{- range . }}
-            <dd>
-              <a href="{{ .URL }}">{{ .Name }}</a>
-            </dd>
+          {{- with .RelatedPackages }}
+            <dt>Related Packages</dt>
+            <dd>{{ . }}</dd>
+          {{- end }}
+          {{- with .Declarations }}
+            <dt>Declared</dt>
+            {{- range . }}
+              <dd>
+                <a href="{{ .URL }}">{{ .Name }}</a>
+              </dd>
+            {{- end }}
           {{- end }}
-        {{- end }}
-      </dl>
-    </details>
+        </dl>
+      </details>
+    {{- else }}
+      Nothing found
+    {{- end }}
   {{- end }}
 {{ end }}