Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
fix(index.html): modules were not imported correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
prplwtf authored Nov 14, 2023
1 parent 20267a0 commit 4ab2f73
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tinydoc</title>
<link href="/.modules/bootstrap/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<link href="/.modules/bootstrap-icons/bootstrap-icons.css" rel="stylesheet" crossorigin="anonymous">
<link href="/.modules/highlight.js/styles/atom-one-dark.css" rel="stylesheet" crossorigin="anonymous">
<link href=".modules/bootstrap/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<link href=".modules/bootstrap-icons/bootstrap-icons.css" rel="stylesheet" crossorigin="anonymous">
<link href=".modules/highlight.js/styles/atom-one-dark.css" rel="stylesheet" crossorigin="anonymous">
</head>

<body data-bs-theme="dark">
Expand Down Expand Up @@ -94,9 +94,9 @@ <h3 class="fw-bolder" style="font-size:25px">Tinydoc</h3>
</footer>
</div>

<script src="/.modules/bootstrap/js/bootstrap.bundle.js" crossorigin="anonymous"></script>
<script src="/.modules/marked/marked.min.js" crossorigin="anonymous"></script>
<script src="/.modules/highlight.js/highlight.min.js" crossorigin="anonymous"></script>
<script src=".modules/bootstrap/js/bootstrap.bundle.js" crossorigin="anonymous"></script>
<script src=".modules/marked/marked.min.js" crossorigin="anonymous"></script>
<script src=".modules/highlight.js/highlight.min.js" crossorigin="anonymous"></script>
<script>
var u = new URL(window.location.href);
var d = u.searchParams.get('page');
Expand All @@ -119,4 +119,4 @@ <h3 class="fw-bolder" style="font-size:25px">Tinydoc</h3>
window.location="?page=Error"
});
</script>
</body>
</body>

0 comments on commit 4ab2f73

Please sign in to comment.