mirror of
https://github.com/ipnet-mesh/meshcore-hub.git
synced 2026-08-03 07:22:44 +02:00
Use network welcome text for SEO meta description
Meta description now uses NETWORK_WELCOME_TEXT prefixed with network name for better SEO, falling back to generic message if not set.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
<title>{% block title %}{{ network_name }}{% endblock %}</title>
|
||||
|
||||
<!-- SEO Meta Tags -->
|
||||
{% set default_description = network_name ~ " - MeshCore off-grid LoRa mesh network dashboard. Monitor nodes, messages, and network activity." %}
|
||||
{% set default_description = (network_name ~ " - " ~ network_welcome_text) if network_welcome_text else (network_name ~ " - MeshCore off-grid LoRa mesh network dashboard.") %}
|
||||
<meta name="description" content="{% block meta_description %}{{ default_description }}{% endblock %}">
|
||||
<meta name="generator" content="MeshCore Hub {{ version }}">
|
||||
<link rel="canonical" href="{{ request.url }}">
|
||||
|
||||
Reference in New Issue
Block a user