{% extends 'base.html.twig' %} {% block title %}Home - Sawnoff League{% endblock %} {% block body %}
{# Hero Section #}

Welcome to Sawnoff League

Your premier competitive gaming league platform


{% if activeSeason %}

Current Season: {{ activeSeason.name }}

{{ activeSeason.startDate|date('M d, Y') }} - {{ activeSeason.endDate|date('M d, Y') }}

{% else %}

No active season at the moment. Check back soon!

{% endif %}
{# Recent Matches Section #}

Recent Matches

{% if recentMatches is not empty %}
{% for match in recentMatches %}
{{ match.homeTeam.name }} {% if match.status == 'completed' %} {{ match.homeScore }} vs {{ match.awayScore }} {% else %} vs {% endif %} {{ match.awayTeam.name }}

{{ match.matchDate|date('M d, Y H:i') }}

{% if match.status == 'scheduled' %} Scheduled {% elseif match.status == 'in_progress' %} In Progress {% elseif match.status == 'completed' %} Completed {% elseif match.status == 'cancelled' %} Cancelled {% endif %}
{% endfor %}
{% else %}
No matches have been scheduled yet.
{% endif %}
{# Quick Links #}
Teams

View all participating teams

Browse Teams
Matches

Check out match schedules and results

View Matches
Standings

See current season rankings

View Standings
{% endblock %}