27 lines
717 B
Twig
27 lines
717 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %} results for {{ query }} !{% endblock %}
|
|
|
|
{% block body %}
|
|
<style>
|
|
.example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }
|
|
.example-wrapper code { background: #F5F5F5; padding: 2px 6px; }
|
|
</style>
|
|
|
|
<div class="example-wrapper">
|
|
<h1>results for {{ query }}! ✅</h1>
|
|
{% for result in results %}
|
|
{% set array = result['title']|split('-') %}
|
|
<div>
|
|
<div>
|
|
artist : {{array[0]}}
|
|
</div>
|
|
<div>
|
|
song : {{array[1]}}
|
|
</div>
|
|
<img src={{result['cover_image']}}/>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|