f7ea9cde45
The menu collapsed to a hamburger below 640px, which was roughly twice the width the items actually need: measured with Segoe UI Semibold, the five entries occupy 296px against 343px available at a 375px viewport. Drops the toggle entirely and scales the column gap and font size with clamp() instead, so there is no breakpoint at all. flex-wrap handles the extreme case -- below ~330px the row wraps to two lines, which still shows every item rather than hiding them. Also removes the checkbox-and-label toggle hack, which announced itself as a checkbox and carried no aria-expanded state. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
63 lines
1.4 KiB
TOML
63 lines
1.4 KiB
TOML
# The live domain. Change this one line when the site moves to
|
|
# https://motorradclub-giebelwald.de/ - it feeds canonical URLs, RSS and sitemap.
|
|
baseURL = 'https://mcg.luxick.de/'
|
|
title = 'Motorradclub Giebelwald e.V.'
|
|
locale = 'de-DE'
|
|
defaultContentLanguage = 'de'
|
|
enableRobotsTXT = true
|
|
enableGitInfo = false
|
|
|
|
# Nothing here is dated in the future on purpose; keep drafts out of production.
|
|
buildDrafts = false
|
|
buildFuture = false
|
|
|
|
[params]
|
|
description = 'Gegründet 1976'
|
|
tagline = 'Gegründet 1976'
|
|
email = 'vorstand@motorradclub-giebelwald.de'
|
|
logo = 'img/logo.png'
|
|
banner = 'img/banner.jpg'
|
|
dateFormat = '2. January 2006'
|
|
|
|
[markup.goldmark.renderer]
|
|
# Some pages contain hand-written HTML (tables, links with target attributes)
|
|
# that must survive rendering.
|
|
unsafe = true
|
|
|
|
[markup.tableOfContents]
|
|
startLevel = 2
|
|
endLevel = 3
|
|
|
|
[taxonomies]
|
|
tag = 'tags'
|
|
|
|
[menus]
|
|
[[menus.main]]
|
|
name = 'Aktuelles'
|
|
pageRef = '/aktuelles'
|
|
weight = 10
|
|
[[menus.main]]
|
|
name = 'Termine'
|
|
pageRef = '/termine'
|
|
weight = 20
|
|
[[menus.main]]
|
|
name = 'Downloads'
|
|
pageRef = '/downloads'
|
|
weight = 30
|
|
[[menus.main]]
|
|
name = 'Archiv'
|
|
pageRef = '/archiv'
|
|
weight = 40
|
|
|
|
[outputs]
|
|
home = ['html', 'rss', 'sitemap']
|
|
section = ['html', 'rss']
|
|
|
|
[services.rss]
|
|
limit = 20
|
|
|
|
[privacy]
|
|
# No third-party embeds on this site; keep it that way.
|
|
[privacy.youtube]
|
|
disable = true
|