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