package main // mastheadComponent renders the Editorial masthead. The wordmark is the brand // signature (Playfair 900 italic). The optional kicker is a small mono caption // above. A hairline rule sits below the title block. When compact mode is on // the kicker is suppressed and the layout collapses to one line. templ mastheadComponent(data MastheadData) {
if data.Compact {
{ data.Title } if data.MenuName != "" { { data.MenuName } }

} else {
if data.Kicker != "" {
{ data.Kicker }
} { data.Title }
if data.MenuName != "" { }
}
}