fix(search): Change artist and song HTML elements from div to p
This commit is contained in:
parent
2594192ae7
commit
534786954e
@ -15,12 +15,8 @@
|
||||
{% set artist = array[0] %}
|
||||
{% set song = array[1] %}
|
||||
<div>
|
||||
<div>
|
||||
artist : {{artist}}
|
||||
</div>
|
||||
<div>
|
||||
song : {{song}}
|
||||
</div>
|
||||
<p>artist : {{artist}}</p>
|
||||
<p>song : {{song}}</p>
|
||||
<img loading="lazy" src={{result['cover_image']}} alt="{{song ~ ' by ' ~ artist}}" />
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
Loading…
Reference in New Issue
Block a user