Skip to content

Commit

Permalink
changed image file path to local images
Browse files Browse the repository at this point in the history
  • Loading branch information
LoadingStill committed Dec 30, 2024
1 parent 24ebf7a commit c4b5832
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/games/childGameTemplate.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>Game</h1>

{% block sidebar %}
<div class="sidebar-images">
<img src="https://cdn.cloudflare.steamstatic.com/steam/apps/107410/library_600x900.jpg?t=1568818863" alt="Game Poster">
<img src="{{ url_for('static', filename='images/****.jpg') }}" alt="Game Poster">
</div>

<div class="sidebar-buttons">
Expand Down
2 changes: 1 addition & 1 deletion templates/games/cs2.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>Counter Strike 2</h1>

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

<div class="sidebar-buttons">
Expand Down
2 changes: 1 addition & 1 deletion templates/games/fctr.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>Factorio</h1>

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

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

0 comments on commit c4b5832

Please sign in to comment.