Skip to content

Commit

Permalink
Fixed Route bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Sas2k committed Dec 30, 2022
1 parent 7a5c3b3 commit d180c79
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/song.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ <h1 class="title"><a href="/">SongTrack</a></h1>
<div class="columns">
<div class="column is-one-quarter">
<figure class="image is-128x128">
<img src={{ url_for("static", filename=Picture) }}> <!-- For Development -->
<!-- <img src="{{ Picture }}"> --> <!-- For Production -->
<!-- <img src={{ url_for("static", filename=Picture) }}> --> <!-- For Development -->
<img src="{{ Picture }}"> <!-- For Production -->
</figure>
</div>
<audio id="audio" controls style="display: none;">
<source src={{ url_for("static", filename=File) }} type="audio/mp3"/> <!-- For Development -->
<!-- <source src="{{ File }}" type="audio/mp3"> --> <!-- For Production -->
<!-- <source src={{ url_for("static", filename=File) }} type="audio/mp3"/> --> <!-- For Development -->
<source src="{{ File }}" type="audio/mp3"> <!-- For Production -->
Your browser does not support the audio element.
</audio>
<div class="column">
Expand Down

1 comment on commit d180c79

@vercel
Copy link

@vercel vercel bot commented on d180c79 Dec 30, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

songtrack – ./

songtrack-git-main-sas2k.vercel.app
songtrack.vercel.app
songtrack-sas2k.vercel.app

Please sign in to comment.