Add both Forum and Community links to navigation
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
a80adcedfd
commit
3efed0bf33
|
|
@ -26,6 +26,10 @@
|
||||||
class="px-3 py-2 rounded-md text-sm font-medium hover:bg-slate-700 transition-colors {% if request.path.startswith('/forum') %}bg-slate-700{% endif %}">
|
class="px-3 py-2 rounded-md text-sm font-medium hover:bg-slate-700 transition-colors {% if request.path.startswith('/forum') %}bg-slate-700{% endif %}">
|
||||||
Forum
|
Forum
|
||||||
</a>
|
</a>
|
||||||
|
<a href="{{ url_for('web.community') }}"
|
||||||
|
class="px-3 py-2 rounded-md text-sm font-medium hover:bg-slate-700 transition-colors {% if request.path.startswith('/community') %}bg-slate-700{% endif %}">
|
||||||
|
Community
|
||||||
|
</a>
|
||||||
<a href="{{ url_for('web.about') }}"
|
<a href="{{ url_for('web.about') }}"
|
||||||
class="px-3 py-2 rounded-md text-sm font-medium hover:bg-slate-700 transition-colors {% if request.path == '/about' %}bg-slate-700{% endif %}">
|
class="px-3 py-2 rounded-md text-sm font-medium hover:bg-slate-700 transition-colors {% if request.path == '/about' %}bg-slate-700{% endif %}">
|
||||||
About
|
About
|
||||||
|
|
@ -119,6 +123,10 @@
|
||||||
class="block px-3 py-2 rounded-md text-base font-medium hover:bg-slate-700 {% if request.path.startswith('/forum') %}bg-slate-700{% endif %}">
|
class="block px-3 py-2 rounded-md text-base font-medium hover:bg-slate-700 {% if request.path.startswith('/forum') %}bg-slate-700{% endif %}">
|
||||||
Forum
|
Forum
|
||||||
</a>
|
</a>
|
||||||
|
<a href="{{ url_for('web.community') }}"
|
||||||
|
class="block px-3 py-2 rounded-md text-base font-medium hover:bg-slate-700 {% if request.path.startswith('/community') %}bg-slate-700{% endif %}">
|
||||||
|
Community
|
||||||
|
</a>
|
||||||
<a href="{{ url_for('web.about') }}"
|
<a href="{{ url_for('web.about') }}"
|
||||||
class="block px-3 py-2 rounded-md text-base font-medium hover:bg-slate-700 {% if request.path == '/about' %}bg-slate-700{% endif %}">
|
class="block px-3 py-2 rounded-md text-base font-medium hover:bg-slate-700 {% if request.path == '/about' %}bg-slate-700{% endif %}">
|
||||||
About
|
About
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue