--- import themeConfig from '@/config' import { ui } from '@/i18n/ui' import { getPageInfo } from '@/utils/page' const { currentLang, getLocalizedPath, isPost } = getPageInfo(Astro.url.pathname) const { title, subtitle, i18nTitle } = themeConfig.site const currentUI = ui[currentLang as keyof typeof ui] const headerTitle = i18nTitle ? currentUI.title : title const headerSubtitle = i18nTitle ? currentUI.subtitle : subtitle const TitleTag = isPost ? 'h2' : 'h1' const SubtitleTag = isPost ? 'div' : 'h2' ---
{headerSubtitle && ( {headerSubtitle} )}