added modal

This commit is contained in:
StockiP
2022-04-20 20:50:09 +02:00
parent 9bb82d2864
commit ff3af4f005
2 changed files with 5 additions and 0 deletions

View File

@@ -27,6 +27,10 @@
<nav class="navbar navbar-expand-lg navbar-light shadow" id="main_nav_bar"> <nav class="navbar navbar-expand-lg navbar-light shadow" id="main_nav_bar">
<!--load content via js--> <!--load content via js-->
</nav> </nav>
<!-- Modal-->
<div class="modal fade bg-white" id="marmeladenladen_search" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
</div>
<h1>Test</h1> <h1>Test</h1>
<p>This is a test commit</p> <p>This is a test commit</p>
</body> </body>

View File

@@ -2,4 +2,5 @@ $(document).ready(function() {
$('#top_nav_bar').load('../components/top_nav.html'); $('#top_nav_bar').load('../components/top_nav.html');
$('#main_nav_bar').load('../components/main_nav.html'); $('#main_nav_bar').load('../components/main_nav.html');
$('#marmeladenladen_footer').load('../components/footer.html'); $('#marmeladenladen_footer').load('../components/footer.html');
$('marmeladenladen_search').load('../components/modal.html');
}); });