August 2016
Intermediate to advanced
376 pages
6h 33m
English
Now let's create the application views:
views/pages folder, create a new file called band-list.html and add the following code: {% extends 'layout.html' %} {% block title %}{% endblock %} {% block content %} <div class="album text-muted"> <div class="container"> <div class="row"> {% for band in bands %} <div class="card col-lg-4"> <h2 class="text-lg-center">{{ band.name }}</h2> {% if band.album == null %} <img src="https://placehold.it/320x320" alt="{{ band.name }}" style="height: 320px; width: 100%; display: block;"> {% endif %} {% if band.album %} <img src="{{ band.album }}" width="100%" height="320px"> {% endif %} <p class ="card-text">{{ band.description }}</p> </div> {% endfor %} </div> </div> ...Read now
Unlock full access