]> nmode's Git Repositories - Rnaught/blob - inst/app/index.html
Revamp Shiny app
[Rnaught] / inst / app / index.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 {{ bootstrapLib(theme = bslib::bs_theme(primary = "red")) }}
5 {{ headContent() }}
6 <title>Rnaught Web</title>
7 <link rel="stylesheet" type="text/css" href="styles.css">
8 <!-- Enable tooltips. -->
9 <script>
10 $(document).ready(function(){
11 $('[data-bs-toggle="tooltip"]').tooltip();
12 });
13 </script>
14 </head>
15 <body class="d-flex flex-column h-100">
16 <noscript>
17 <strong>This application requires JavaScript.</strong>
18 </noscript>
19 {{ htmlTemplate("templates/navbar.html") }}
20 {{ htmlTemplate("templates/tabs.html") }}
21 {{ htmlTemplate("templates/content.html") }}
22 {{ htmlTemplate("templates/footer.html") }}
23 </body>
24 </html>