Skip to content

Commit

Permalink
Remove relative refs to static files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZandercraftGames committed Sep 28, 2023
1 parent eb78295 commit a75b14e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion views/error.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="text-center mt-4">
<img class="mb-4 img-error" src="./images/technicflux-logo-white.png" />
<img class="mb-4 img-error" src="/images/technicflux-logo-white.png" />
<h2>Error {{error.status}}: {{message}}</h2>
<p class="lead">{{error_message}}</p>
<pre>{{error.stack}}</pre>
Expand Down
6 changes: 3 additions & 3 deletions views/layout.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{title}}</title>
<link rel="stylesheet" href="./stylesheets/bootstrap.min.css" >
<link rel="stylesheet" href="/stylesheets/bootstrap.min.css" >
<!-- <link rel="stylesheet" href="./stylesheets/bootstrap-light.min.css" >-->
<link rel='stylesheet' href='./stylesheets/style.css'/>
<link rel='stylesheet' href='./stylesheets/styles.css'/>
<link rel='stylesheet' href='/stylesheets/style.css'/>
<link rel='stylesheet' href='/stylesheets/styles.css'/>
<script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
</head>
<body>
Expand Down

0 comments on commit a75b14e

Please sign in to comment.