-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now there's a html page (no server) and single page version 😓
- Loading branch information
1 parent
d477003
commit 9ee4dd7
Showing
6 changed files
with
77 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
<title>$title</title> | ||
|
||
<!-- Favicon --> | ||
<link rel="icon" type="image/x-icon" href="/public/img/favicon.ico"> | ||
<link rel="icon" type="image/x-icon" href="$favicon"> | ||
|
||
<!-- Bootstrap and FontAwesome --> | ||
<!-- <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> --> | ||
|
@@ -24,7 +24,7 @@ | |
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" /> --> | ||
|
||
<!-- My Custom Css --> | ||
<link rel="stylesheet" type="text/css" href="/public/css/style.css"> | ||
<link rel="stylesheet" type="text/css" href="$style"> | ||
<!-- <link rel="stylesheet" type="text/css" href="/public/css/spectre/dist/spectre.min.css"> --> | ||
<!-- <link rel="stylesheet" type="text/css" href="/public/css/spectre/dist/spectre-icons.min.css"> --> | ||
|
||
|
@@ -37,41 +37,57 @@ | |
|
||
<!-- gtag('config', '$ ga'); --> | ||
<!-- </script> --> | ||
|
||
</head> | ||
|
||
<body> | ||
<div id="ROOT"></div> | ||
<!-- Bootstrap --> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> | ||
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> --> | ||
|
||
<!-- Matter.js --> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/matter-js/0.19.0/matter.min.js" integrity="sha512-0z8URjGET6GWnS1xcgiLBZBzoaS8BNlKayfZyQNKz4IRp+s7CKXx0yz7Eco2+TcwoeMBa5KMwmTX7Kus7Fa5Uw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/matter-js/0.19.0/matter.min.js" integrity="sha512-0z8URjGET6GWnS1xcgiLBZBzoaS8BNlKayfZyQNKz4IRp+s7CKXx0yz7Eco2+TcwoeMBa5KMwmTX7Kus7Fa5Uw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
|
||
<!-- Matter.js wrap plugin --> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/matter-wrap.min.js" integrity="sha256-5Joj4yN1bnDB2NEyA2XIM5FanLSGfd2q6Jvpdh399gs=" crossorigin="anonymous"></script> | ||
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/build/matter-wrap.min.js" integrity="sha256-5Joj4yN1bnDB2NEyA2XIM5FanLSGfd2q6Jvpdh399gs=" crossorigin="anonymous"></script> | ||
|
||
<!-- Pollyfill --> | ||
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> | ||
<!-- <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> --> | ||
|
||
<!-- Mathjax --> | ||
<script> | ||
MathJax = { | ||
// loader: {load: ['ui/lazy']}, | ||
loader: {load: ['a11y/explorer']}, | ||
startup: { | ||
typeset: false, | ||
// ready: () => { | ||
// MathJax.startup.defaultReady(); | ||
// }, | ||
}, | ||
options: { | ||
// enableEnrichment: true, | ||
// enableExplorer: false, // set to false to disable the explorer | ||
// enableComplexity: false, // set to false to disable complexity computations | ||
enableMenu: true, // set to false to disable the menu | ||
menuOptions: { | ||
settings: { | ||
zoom: 'DoubleClick', // or 'Click' or 'DoubleClick' as zoom trigger | ||
zscale: '200%', // zoom scaling factor | ||
// assistiveMml: false, // true if hidden assistive MathML should be generated for screen readers | ||
// collapsible: false, // true if complex math should be collapsible | ||
// explorer: false, // true if the expression explorer should be active | ||
// texHints: false, // put TeX-related attributes on MathML | ||
// semantics: false, // put original format in <semantic> tag in MathM | ||
}, | ||
} | ||
} | ||
} | ||
</script> | ||
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> | ||
|
||
<script defer id="MathJax-script" src="https://cdn.jsdelivr.net/npm/[email protected]/es5/tex-chtml.js"></script> | ||
|
||
<!-- Frontend --> | ||
<script src="/public/js/frontend.js"></script> <!-- ?t=$ timestamp --> | ||
</body> | ||
<script defer src="$frontend"></script> <!-- ?t=$ timestamp --> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters