-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
34 lines (28 loc) · 738 Bytes
/
base.html
File metadata and controls
34 lines (28 loc) · 738 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
29
30
31
32
33
34
---
common-css:
- "/assets/css/mdb.rubin.css"
- "/assets/css/custom.css"
common-ext-css:
- "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
common-ext-js:
- href: "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js"
- href: "https://polyfill.io/v3/polyfill.min.js?features=es6"
- href: "https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
common-js:
- "/assets/js/mdb.min.js"
- "/assets/js/main.js"
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<!--Main Navigation-->
<header>
{% include navbar.html %}
</header>
<!--Main Navigation-->
{{ content }}
{% include footer.html %}
{% include footer-scripts.html %}
</body>
</html>