Although my content is short, I want the page to continue on with more information down the screen.
<div style="background: #e0e0e0;">
<main role="main" class="container">
<div class="row" style="background: #f9f9f9;">
<div class="col mb-3">
<h1 class="display-4 mt-5">{{object.name}}</h1>
<p>City: New York</p>
<div class="row mt-5">
<table class="table">
<thead>
<tr>
<th scope="col">Year</th>
<th scope="col">Show</th>
</tr>
</thead>
<tbody>
{% for show in shows %}
<tr>
<th scope="row">2019</th>
<td>Test Title</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</main>
</div>