index.html 567 B

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