Files
BookNest/templates/apiSearch/index.html.twig

14 lines
232 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Hello APITestController!{% endblock %}
{% block body %}
<div>
{% for book in datas.items %}
<h1>{{ book.volumeInfo.title }}</h1>
{% endfor %}
</div>
{% endblock %}