100-Days-Of-Code/Visual Studio Code Projects/day-62-starting-files-coffee-and-wifi/templates/cafes.html

25 lines
531 B
HTML

{% extends 'base.html' %}
{% block title %}Restaurants{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>All Cafes</h1>
<table class="table table-dark table-striped table-hover">
<!-- This is where you will write the code to render a Bootstrap
Table that contains all the information from the
cafe-data.csv file. -->
</table>
<p><a href="#">Return to index page</a></p>
</div>
</div>
</div>
{% endblock %}