21 lines
577 B
HTML
21 lines
577 B
HTML
<!-- templates/home.html -->
|
|
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block title %}Trafoking{% endblock %}
|
|
{% block content %}
|
|
<section class="flex flex-col items-center text-center gap-12 hero-appear">
|
|
|
|
<img src="{% static 'img/logo.png' %}" class="logo-big drop-shadow-lg"/>
|
|
|
|
<div class="flex flex-col sm:flex-row gap-6">
|
|
<a href="{% url 'participant_new' %}" class="btn btn-primary text-lg">
|
|
Empezar concurso
|
|
</a>
|
|
<a href="{% url 'settings' %}" class="btn btn-primary text-lg">
|
|
Administración
|
|
</a>
|
|
</div>
|
|
|
|
</section>
|
|
{% endblock %}
|