forked from NUstat/2025-datafest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
28 lines (28 loc) · 945 Bytes
/
template.html
File metadata and controls
28 lines (28 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
{{ meta }} <!-- Quarto will fill in metadata -->
{{ head }} <!-- Quarto will insert other <head> elements -->
</head>
<body>
<header class="navbar navbar-default">
<div class="container">
<nav class="navbar navbar-expand-lg">
<div class="navbar-brand">
<!-- Left-hand items -->
<ul class="navbar-nav me-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
</ul>
</div>
<!-- Right-hand logo -->
<div class="navbar-right">
<img src="images/NU_Stat_logo.png" alt="Logo" class="custom-logo">
</div>
</nav>
</div>
</header>
{{ body }} <!-- Main content -->
{{ scripts }} <!-- Quarto will insert scripts -->
</body>
</html>