phase2: add modular apps, auth scaffolding, and base template routing
This commit is contained in:
18
templates/core/home.html
Normal file
18
templates/core/home.html
Normal file
@ -0,0 +1,18 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user