Merge pull request #673 from ipatpat/Development

【Bug修复】修复Medium主题footer中<h1>{title}</h1>显示空白的问题
This commit is contained in:
tangly1024
2023-01-04 10:23:14 +08:00
committed by GitHub

View File

@@ -20,7 +20,7 @@ import BLOG from '@/blog.config'
* @constructor
*/
const LayoutBase = props => {
const { children, meta, showInfoCard = true, slotRight, slotTop } = props
const { children, meta, showInfoCard = true, slotRight, slotTop, siteInfo } = props
const { locale } = useGlobal()
const router = useRouter()
@@ -61,7 +61,7 @@ const LayoutBase = props => {
</div>
{/* 移动端底部 */}
<Footer />
<Footer title={siteInfo?.title}/>
<BottomMenuBar className='block md:hidden' />
</div>
)