Skip to content

Commit

Permalink
cleaned up minecraft
Browse files Browse the repository at this point in the history
  • Loading branch information
LoadingStill committed Dec 30, 2024
1 parent 192133f commit 87aa1bb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion game_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
'arma3': '/static/images/arma3.jpg',
'dst': '/static/images/dst.jpg',
'eco': '/static/images/eco.jpg',
# Add more games here as needed
'mc': '/static/images/mc.jpg'
}
5 changes: 3 additions & 2 deletions static/images/image_urls.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
["cs2", "cs2.jpg", "https://cdn.cloudflare.steamstatic.com/steam/apps/730/library_600x900.jpg"],
["factorio", "fctr.jpg", "https://cdn.cloudflare.steamstatic.com/steam/apps/427520/library_600x900.jpg?t=1597145422"],
["arma3", "arma3.jpg", "https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/107410/library_600x900.jpg?t=1568818863"],
["dst", "dst.jpg", "https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322330/library_600x900.jpg?t=1701988133"]
["eco", "eco.jpg", "https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/382310/library_600x900.jpg?t=1702129337"]
["dst", "dst.jpg", "https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322330/library_600x900.jpg?t=1701988133"],
["eco", "eco.jpg", "https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/382310/library_600x900.jpg?t=1702129337"],
["mc", "mc.jpg", "https://cdn2.steamgriddb.com/grid/a73027901f88055aaa0fd1a9e25d36c7.png"]
]
2 changes: 1 addition & 1 deletion templates/games/eco.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>Eco</h1>

{% block sidebar %}
<div class="sidebar-images">
<img src=""{{ url_for('static', filename='images/eco.jpg') }}"" alt="Eco Poster">
<img src="{{ url_for('static', filename='images/eco.jpg') }}" alt="Eco Poster">
</div>

<div class="sidebar-buttons">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>Minecraft Java</h1>

{% block sidebar %}
<div class="sidebar-images">
<img src="https://www.minecraft.net/content/dam/games/minecraft/key-art/Games_Subnav_Minecraft-300x465.jpg" alt="Minecraft Java Poster">
<img src="{{ url_for('static', filename='images/mc.jpg') }}" alt="Minecraft Java Poster">
</div>

<div class="sidebar-buttons">
Expand Down

0 comments on commit 87aa1bb

Please sign in to comment.