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.
2 parents 58c4929 + d7f10d0 commit f224a16Copy full SHA for f224a16
1 file changed
src/main/resources/bootstrap5/page.jelly
@@ -7,7 +7,7 @@
7
Owner of the page.
8
</st:attribute>
9
<st:attribute name="notitle" use="optional">
10
- Hide the title on top of the page.
+ Hide the title on top of the page. This option can also be used if you wish to add a more complex app bar.
11
12
<st:attribute name="class" use="optional">
13
Additional classes to be applied to the page body.
@@ -25,14 +25,12 @@
25
26
<st:adjunct includes="io.jenkins.plugins.bootstrap5"/>
27
28
- <div class="container-fluid ${class}">
29
-
30
- <j:if test="${notitle == null}">
31
- <h1>${title}</h1>
32
- </j:if>
+ <j:if test="${notitle == null}">
+ <l:app-bar title="${title}"/>
+ </j:if>
33
+ <div class="${class}">
34
<d:invokeBody/>
35
36
</div>
37
</l:main-panel>
38
</l:layout>
0 commit comments