Skip to content

Commit

Permalink
troubleshooting relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
wbraden committed Aug 14, 2024
1 parent c9a866e commit c34eb75
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Components/browseTile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const browseTileTemplate = document.createElement("template");
browseTileTemplate.innerHTML = `
<link rel="stylesheet" href="../css/main.css">
<link rel="stylesheet" href="css/main.css">
<a href="" class="browse-tile-link">
<div class="browse-tile">
<div class="media">
Expand Down
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -382,10 +382,10 @@ <h1 class="typography headline xl">Good morning, Amanda</h1>

<script src="https://unpkg.com/@webcomponents/webcomponentsjs@^2/webcomponents-bundle.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script src="Components/browseTile.js"></script>
<script src="Components/productCard.js"></script>
<script src="Components/sectionHeader.js"></script>
<script src="Components/navbar.js"></script>
<script src="../Components/browseTile.js"></script>
<script src="../Components/productCard.js"></script>
<script src="../Components/sectionHeader.js"></script>
<script src="../Components/navbar.js"></script>

<script>
// stores
Expand Down

0 comments on commit c34eb75

Please sign in to comment.