introduce breadcrumbs in the web config

This commit is contained in:
Jakob Ketterl
2021-04-18 17:49:13 +02:00
parent 1968e15237
commit e8cf014903
17 changed files with 139 additions and 16 deletions

View File

@ -11,6 +11,7 @@
<body>
${header}
<div class="container">
${breadcrumb}
<div class="row">
<h1 class="col-12">Bookmarks</h1>
</div>
@ -24,6 +25,7 @@ ${header}
<button type="button" class="btn btn-primary bookmark-add">Add a new bookmark</button>
</div>
</div>
${breadcrumb}
</div>
<div class="modal" id="deleteModal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">

View File

@ -11,10 +11,12 @@
<body>
${header}
<div class="container">
${breadcrumb}
<div class="row">
<h1 class="col-12">${title}</h1>
</div>
${content}
${breadcrumb}
</div>
${modal}
</body>