12345678910111213141516171819202122232425262728293031 |
- {% load static %}
- {% load i18n %}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>{% block title %}Zitap{% endblock %}</title>
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="stylesheet" href="{% static 'zitap/css/style.css' %}">
- <link rel="stylesheet" href="{% static 'zitap/css/date-picker.css' %}">
- <link rel="stylesheet" href="{% static 'zitap/css/create-event.css' %}">
- {% block head %}{% endblock %}
- </head>
- <body>
- <div class="container">
- <header class="main-head">Zitap</header>
- <nav class="main-nav">
- <ul>
- <li><a href="{% url 'index' %}">{% trans "Home" %}</a></li>
- <li><a href="{% url 'about' %}">{% trans "About" %}</a></li>
- </ul>
- </nav>
- <main class="main-content">
- {% block content %}
- <button class="create-event" onclick="location.href='{% url 'create-event' %}'">
- {% trans "Create Event" %}
- </button>
- {% endblock %}
- </main>
- </div>
- </body>
- </html>
|