Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions src/main/resources/bootstrap5/page.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Owner of the page.
</st:attribute>
<st:attribute name="notitle" use="optional">
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.
</st:attribute>
<st:attribute name="class" use="optional">
Additional classes to be applied to the page body.
Expand All @@ -25,14 +25,12 @@

<st:adjunct includes="io.jenkins.plugins.bootstrap5"/>

<div class="container-fluid ${class}">

<j:if test="${notitle == null}">
<h1>${title}</h1>
</j:if>
<j:if test="${notitle == null}">
<l:app-bar title="${title}"/>
</j:if>

<div class="${class}">
<d:invokeBody/>

</div>
</l:main-panel>
</l:layout>
Expand Down
Loading