summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
8e97f93)
Github pages places this project at https://xangelo.ca/outliner which is
fine, but it requires a small change to the asset inclusion to swap to
relative paths.
<head>
<meta charset="utf-8">
<title>Outliner</title>
<head>
<meta charset="utf-8">
<title>Outliner</title>
- <link rel="stylesheet" href="/assets/reset.css">
- <link rel="stylesheet" href="/assets/style.css">
+ <link rel="stylesheet" href="./assets/reset.css">
+ <link rel="stylesheet" href="./assets/style.css">
</head>
<body>
<div id="outliner"></div>
</head>
<body>
<div id="outliner"></div>
An Outliner project by <a href="https://xangelo.ca">xangelo</a>
</footer>
</body>
An Outliner project by <a href="https://xangelo.ca">xangelo</a>
</footer>
</body>
- <script src="/assets/bundle.js"></script>
+ <script src="./assets/bundle.js"></script>