Aucune description

base.html 581B

1234567891011121314151617181920
  1. {% load static %}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Tailwind + Django</title>
  9. <link rel="stylesheet" href="{% static 'css/main.css' %}">
  10. </head>
  11. <body class="bg-grey-lightest font-serif leading-normal tracking-normal">
  12. <div class="container mx-auto ">
  13. <section class="flex items-center justify-center h-screen">
  14. <h1 class="text-5xl font-sans">Django + Tailwind = ❤️</h1>
  15. </section>
  16. </div>
  17. </body>
  18. </html>