- Add horizontal nav menu with 7 items: Profile, Characters, Sessions, Mechanics, Leaderboard, Settings, Help - Implement responsive hamburger menu for mobile (≤768px) - Create pages blueprint with stub routes for new pages - Add "Coming Soon" styled stub templates with icons - Include active state highlighting for current page 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
1013 B
HTML
26 lines
1013 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Help - Code of Conquest{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="page-container">
|
|
<div class="coming-soon-card">
|
|
<h1 class="page-title">Help & Guide</h1>
|
|
<div class="coming-soon-icon">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
|
|
<circle cx="12" cy="12" r="10"/>
|
|
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"/>
|
|
<line x1="12" y1="17" x2="12.01" y2="17"/>
|
|
</svg>
|
|
</div>
|
|
<p class="coming-soon-text">Coming Soon</p>
|
|
<p class="coming-soon-description">
|
|
Find tutorials, FAQs, and guides to help you on your adventures.
|
|
</p>
|
|
<a href="{{ url_for('character_views.list_characters') }}" class="btn btn-primary">
|
|
Back to Characters
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|