Skip to content

Commit

Permalink
Add indentation to asset index
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboyd committed Oct 7, 2024
1 parent db584af commit 405fc21
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions website/sitemap.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ writeFileSync("./build/interactors/assets/js/index.html",`
${assets.map((asset) => ` <link rel="asset" href="${asset}"/>`).join("\n")}
</head>
<body>
<h1> JavaScript Index</h1>
<ul>
<h1> JavaScript Index</h1>
<ul>
${assets.map((asset) => ` <li><a href="${asset}">${asset}</a></li>`).join("\n")}
${assets.map((asset) => ` <li><a href="${asset}">${asset}</a></li>`).join("\n")}
</ul>
</ul>
<body>
<html>
Expand All @@ -57,12 +57,12 @@ writeFileSync("./build/interactors/images/index.html",`
${images.map((image) => ` <link rel="asset" href="${image}"/>`).join("\n")}
</head>
<body>
<h1> JavaScript Index</h1>
<ul>
<h1> JavaScript Index</h1>
<ul>
${images.map((image) => ` <li><a href="${image}">${image}</a></li>`).join("\n")}
${images.map((image) => ` <li><a href="${image}">${image}</a></li>`).join("\n")}
</ul>
</ul>
<body>
<html>
Expand Down

0 comments on commit 405fc21

Please sign in to comment.