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

16 lines
551 B
HTML

{% extends 'base.html' %}
{% block title %}Coffee and Wifi{% endblock %}
{% block content %}
<div class="jumbotron text-center">
<div class="container">
<h1 class="display-4">☕️ Coffee & Wifi 💻</h1>
<p class="lead">Want to work in a cafe but need power and wifi?</p>
<hr class="my-4">
<p>You've found the right place! Checkout my collection of cafes with data on power socket availability, wifi speed and coffee quality.</p>
<a class="btn btn-warning btn-lg" href="#" role="button">Show Me!</a>
</div>
</div>
{% endblock %}