Skip to content

Commit

Permalink
Merge pull request #310 from thefrontside/cl/deno-deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboyd authored Oct 7, 2024
2 parents 897ead7 + 405fc21 commit cfc14ae
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 cfc14ae

Please sign in to comment.