19 lines
615 B
HTML
19 lines
615 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}HoopScout | Home{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<h1>Basketball scouting, server-rendered.</h1>
|
|
<p>Search players and track targets using a Django + HTMX workflow.</p>
|
|
<div class="actions">
|
|
<a class="button" href="{% url 'players:index' %}">Browse players</a>
|
|
{% if request.user.is_authenticated %}
|
|
<a class="button ghost" href="{% url 'core:dashboard' %}">Go to dashboard</a>
|
|
{% else %}
|
|
<a class="button ghost" href="{% url 'users:signup' %}">Create account</a>
|
|
{% endif %}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|