You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1009 B
36 lines
1009 B
<!-- File: templates/base.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>BookScraper</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="/static/css/style.css" />
|
|
<link rel="stylesheet" href="/static/css/dashboard.css" />
|
|
</head>
|
|
<body>
|
|
<!-- Global Navigation -->
|
|
{% include "components/nav.html" %}
|
|
|
|
<!-- Main Content Area -->
|
|
<main class="container">{% block content %}{% endblock %}</main>
|
|
|
|
<!-- JS -->
|
|
<script src="/static/js/app.js"></script>
|
|
<script src="/static/js/log_view.js"></script>
|
|
<script src="/static/js/dashboard.js"></script>
|
|
|
|
<!-- GLOBAL STATE UPDATER -->
|
|
<script src="/static/js/state_updater.js"></script>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
if (typeof initStateUpdater === "function") {
|
|
initStateUpdater();
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|