Logo-Text: boardgame.network; 🔔→SVG-Glocke in BSN-Blau

This commit is contained in:
Hermes Agent
2026-06-18 00:56:21 +02:00
parent 55da2dbc2d
commit aa1ee564bd
+8 -8
View File
@@ -998,7 +998,7 @@ function toggleTheme(){{document.body.classList.toggle('light');localStorage.set
<div class="admin-header-inner">
<div class="admin-logo-wrap">
<img src="/static/logo.png" alt="Brettspiel News" style="height:34px;width:auto;">
<span class="admin-logo-sub">Boardgame Social</span>
<span class="admin-logo-sub">boardgame.network</span>
</div>
<div class="meta">
<span class="count-badge">{len(rows)} Submissions</span>
@@ -2132,7 +2132,7 @@ def public_frontend():
<button id="navToggle" class="nav-toggle" aria-label="Menü öffnen"></button>
<a href="/" class="site-logo">
<img src="/static/logo.png" alt="Brettspiel News" style="height:38px;width:auto;display:block;">
<span class="site-logo-sub">Boardgame Social</span>
<span class="site-logo-sub">boardgame.network</span>
</a>
<div class="header-right">
<a href="https://brettspiel-news.de">brettspiel-news.de</a>
@@ -2223,7 +2223,7 @@ def public_frontend():
<input type="email" id="subEmail" placeholder="deine@email.de" maxlength="200">
<label>Handynummer für WhatsApp-Benachrichtigungen</label>
<input type="tel" id="subPhone" placeholder="+49 170 1234567" maxlength="50">
<p style="font-size:0.7rem;color:#999;margin:-0.3rem 0 0.5rem 0;">🔔 E-Mail oder Handynummer erforderlich, damit wir dich bei Antworten & Likes benachrichtigen können.</p>
<p style="font-size:0.7rem;color:#999;margin:-0.3rem 0 0.5rem 0;"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="#20228a" stroke-width="2" stroke-linecap="round" style="vertical-align:middle;margin-right:4px;"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"/><path d="M13.73 21a2 2 0 0 1-3.46 0"/></svg> E-Mail oder Handynummer erforderlich, damit wir dich bei Antworten & Likes benachrichtigen können.</p>
<label>Nachricht (optional, reicht auch ohne Text)</label>
<textarea id="subText" placeholder="Was möchtest du mitteilen? ..." maxlength="20000"></textarea>
<label>📎 Medien aufnehmen oder auswählen</label>
@@ -3332,7 +3332,7 @@ def public_detail(sub_id: int):
<header class="site-header">
<a href="/" class="site-logo">
<img src="/static/logo.png" alt="Brettspiel News" style="height:30px;width:auto;display:block;" width="160" height="30">
<span class="site-logo-sub">Boardgame Social</span>
<span class="site-logo-sub">boardgame.network</span>
</a>
</header>
<main class="detail-container">
@@ -3359,7 +3359,7 @@ def public_detail(sub_id: int):
<input type="hidden" name="parent_id" id="commentParentId" value="">
<input type="text" name="author" placeholder="Dein Name (optional)" maxlength="80" class="comment-input">
<textarea name="content" placeholder="Schreib einen Kommentar..." maxlength="2000" required class="comment-textarea"></textarea>
<div class="comment-field-hint">🔔 Damit wir dich bei Antworten benachrichtigen können (E-Mail oder Nummer erforderlich):</div>
<div class="comment-field-hint"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="#20228a" stroke-width="2" stroke-linecap="round" style="vertical-align:middle;margin-right:4px;"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"/><path d="M13.73 21a2 2 0 0 1-3.46 0"/></svg> Damit wir dich bei Antworten benachrichtigen können (E-Mail oder Nummer erforderlich):</div>
<input type="email" name="email" placeholder="E-Mail-Adresse" maxlength="200" class="comment-email">
<input type="tel" name="phone" placeholder="Handynummer (für WhatsApp-Benachrichtigung)" maxlength="50" class="comment-phone">
<button type="submit" class="comment-submit-btn">Kommentar senden</button>
@@ -3530,7 +3530,7 @@ def api_like(sub_id: int):
f"Dein Beitrag \"{post_label}\" hat jetzt {new_likes} Likes.\n\n"
f"👉 {link}\n\n"
f"Viele Grüße,\n"
f"Boardgame Social / brettspiel-news.de\n"
f"boardgame.network / brettspiel-news.de\n"
)
_send_email(row["email"], subject, body)
except Exception:
@@ -3611,7 +3611,7 @@ def api_comment(sub_id: int):
f"\"{content[:300]}{'...' if len(content) > 300 else ''}\"\n\n"
f"👉 {link}\n\n"
f"Viele Grüße,\n"
f"Boardgame Social / brettspiel-news.de\n"
f"boardgame.network / brettspiel-news.de\n"
)
_send_email(parent["email"], subject, body)
except Exception:
@@ -3650,7 +3650,7 @@ def api_comment(sub_id: int):
f"\"{content[:300]}{'...' if len(content) > 300 else ''}\"\n\n"
f"👉 {link}\n\n"
f"Viele Grüße,\n"
f"Boardgame Social / brettspiel-news.de\n"
f"boardgame.network / brettspiel-news.de\n"
)
_send_email(row["email"], subject, body)
except Exception: