Skip to content

Commit 87aa1bb

Browse files
committed
cleaned up minecraft
1 parent 192133f commit 87aa1bb

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

game_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
'arma3': '/static/images/arma3.jpg',
55
'dst': '/static/images/dst.jpg',
66
'eco': '/static/images/eco.jpg',
7-
# Add more games here as needed
7+
'mc': '/static/images/mc.jpg'
88
}

static/images/image_urls.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
["cs2", "cs2.jpg", "https://cdn.cloudflare.steamstatic.com/steam/apps/730/library_600x900.jpg"],
33
["factorio", "fctr.jpg", "https://cdn.cloudflare.steamstatic.com/steam/apps/427520/library_600x900.jpg?t=1597145422"],
44
["arma3", "arma3.jpg", "https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/107410/library_600x900.jpg?t=1568818863"],
5-
["dst", "dst.jpg", "https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322330/library_600x900.jpg?t=1701988133"]
6-
["eco", "eco.jpg", "https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/382310/library_600x900.jpg?t=1702129337"]
5+
["dst", "dst.jpg", "https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322330/library_600x900.jpg?t=1701988133"],
6+
["eco", "eco.jpg", "https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/382310/library_600x900.jpg?t=1702129337"],
7+
["mc", "mc.jpg", "https://cdn2.steamgriddb.com/grid/a73027901f88055aaa0fd1a9e25d36c7.png"]
78
]

templates/games/eco.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ <h1>Eco</h1>
88

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

1414
<div class="sidebar-buttons">

templates/games/minecraftjava.html renamed to templates/games/mc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ <h1>Minecraft Java</h1>
88

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

1414
<div class="sidebar-buttons">

0 commit comments

Comments
 (0)