14 lines
516 B
HTML
14 lines
516 B
HTML
|
|
{% extends "core/base.html" %}
|
||
|
|
{% load static %}
|
||
|
|
|
||
|
|
{% block title_text %}My Sea{% endblock title_text %}
|
||
|
|
{% block header_text %}<span>My</span><span>Sea</span>{% endblock header_text %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<div class="my-sea-page">
|
||
|
|
{# Sprint 3 shell only — gatekeeper / sig-select / sea-select phases #}
|
||
|
|
{# will land here in later sprints of the My Sea roadmap. #}
|
||
|
|
<p class="my-sea-page__empty">Your sea is calm. Draws will appear here.</p>
|
||
|
|
</div>
|
||
|
|
{% endblock content %}
|