Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
Minor fix for relative paths
  • Loading branch information
rodpolako committed Apr 27, 2024
1 parent 75abf47 commit 46decd0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,18 @@
<head>
<title>Chess PGN Trainer</title>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-16">
<base href="../" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">

<!-- Needed external includes -->
<!-- CSS Scheme for application overall (everything except the chessboard itself) -->
<link rel="stylesheet" href="/assets/pagestyle.css">
<link rel="stylesheet" href="./assets/pagestyle.css">

<!-- W3 Responsive Web Design -->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">

<!-- Local custom copy of Chessboard.css to enable overriding the default colors with Lichess colors instead
TODO: See about adding ability to define colors -->
<link rel="stylesheet" href="/assets/chessboard-1.0.0.css">
<link rel="stylesheet" href="./assets/chessboard-1.0.0.css">

<!-- JQuery include (required for chessboard.js) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
Expand All @@ -26,7 +25,7 @@

<!-- Local custom copy of Chessboard.js to enable use of different piece sets
TODO: See about adding ability to define piece sets -->
<script src="/assets/chessboard-1.0.0-custom.js"></script>
<script src="./assets/chessboard-1.0.0-custom.js"></script>

<!-- Local copy of chess.js -->
<script src="./assets/chess.js"></script>
Expand Down

0 comments on commit 46decd0

Please sign in to comment.