Skip to content

Commit

Permalink
fix links and order of images in Games section
Browse files Browse the repository at this point in the history
  • Loading branch information
och-och committed Mar 6, 2022
1 parent 741a7a2 commit 49a98b4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/routes/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ var games = [
rows: 2, cols: 1,
image: "/img/games/park rangers/headerS.png",
title: "Park Rangers of The Undead",
url: "./games/park ranger"
url: "https://store.steampowered.com/app/1701760"
},
{},
{
image: "/img/games/concord assault/Screenshot_32.png"
image: "/img/games/range/range.png"
},
{
image: "/img/games/range/range.png",
image: "/img/games/concord assault/Screenshot_32.png",
title: "Concord Assault",
url: "./games/concord assault"
url: "https://nightingale-studios.itch.io/concord-assault"
},
{},{},{},
{
Expand Down Expand Up @@ -106,7 +106,7 @@ var games = [
background-image: url("${game.image ?? ""}");
`}>
{#if game.url}
<a class="title" href={game.url ?? ""}>
<a class="title" href={game.url ?? ""} target="_blank">
<h5>{game.title ?? "to be announced"}</h5>
</a>
{:else}
Expand Down

0 comments on commit 49a98b4

Please sign in to comment.