load CSS & JS from relative paths

main
Robert Pearce 2020-09-22 21:58:16 -04:00
parent 52431847d6
commit eb85b25e87
No known key found for this signature in database
GPG Key ID: 07A0E482E5616C9B
1 changed files with 2 additions and 2 deletions

View File

@ -39,10 +39,10 @@
<link rel="shortcut icon" href="/favicon.ico">
<link rel="canonical" href="$root$$url$">
<link rel="stylesheet" href="/css/$stylesheet$.css" />
<link rel="stylesheet" href="./css/$stylesheet$.css" />
</head>
<body>
$body$
<script async src="/js/script.js"></script>
<script async src="./js/script.js"></script>
</body>
</html>