We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ba433d commit 0d6d32eCopy full SHA for 0d6d32e
2 files changed
content/form/combined-request-form.md
@@ -9,6 +9,7 @@ title = "Combined Request Form"
9
draft = false
10
type = "form"
11
private = true
12
+hideNavbar = true
13
+++
14
<style>
15
.table thead th {
@@ -24,6 +25,7 @@ private = true
24
25
word-break: break-word;
26
}
27
</style>
28
+
29
<!-- Core scripts needed for form functionality -->
30
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
31
<script type="text/javascript" src="/js/combined-request-form.js"></script>
layouts/cloud/baseof.html
@@ -19,8 +19,10 @@
19
</head>
20
21
<body>
22
-
23
- {{ partial "menu-home.html" . }}
+ {{ if not .Params.hideNavbar }}
+ {{ partial "menu-home.html" . }}
+ {{ end }}
{{ partial "site-header.html" . }}
0 commit comments