index.html 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. {% load static %}
  2. {% load i18n %}
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <title>{% block title %}Zitap{% endblock %}</title>
  7. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  8. <link rel="stylesheet" href="{% static 'zitap/css/style.css' %}">
  9. <link rel="stylesheet" href="{% static 'zitap/css/date-picker.css' %}">
  10. <link rel="stylesheet" href="{% static 'zitap/css/create-event.css' %}">
  11. {% block head %}{% endblock %}
  12. </head>
  13. <body>
  14. <div class="container">
  15. <header class="main-head">Zitap</header>
  16. <nav class="main-nav">
  17. <ul>
  18. <li><a href="{% url 'index' %}">{% trans "Home" %}</a></li>
  19. <li><a href="{% url 'about' %}">{% trans "About" %}</a></li>
  20. </ul>
  21. </nav>
  22. <main class="main-content">
  23. {% block content %}
  24. <button class="create-event" onclick="location.href='{% url 'create-event' %}'">
  25. {% trans "Create Event" %}
  26. </button>
  27. {% endblock %}
  28. </main>
  29. </div>
  30. </body>
  31. </html>