From 408c358da70825f740f82b64ec4db2bbcb791e1c Mon Sep 17 00:00:00 2001 From: tangly1024 Date: Thu, 14 Oct 2021 09:42:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83=E7=BB=84=E4=BB=B6=EF=BC=8C?= =?UTF-8?q?=E9=A6=96=E9=A1=B5=E5=92=8C=E5=8D=9A=E5=AE=A2=E9=A1=B5=E5=88=86?= =?UTF-8?q?=E7=A6=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/CommonHead.js | 2 +- components/Footer.js | 4 +- components/JumpToTop.js | 10 +- components/TopNav.js | 2 +- layouts/IndexLayout.js | 110 ++++++++++++++++++++ layouts/{DefaultLayout.js => PageLayout.js} | 26 +++-- pages/index.js | 8 +- pages/page/[page].js | 4 +- pages/tag/[tag].js | 4 +- 9 files changed, 145 insertions(+), 25 deletions(-) create mode 100644 layouts/IndexLayout.js rename layouts/{DefaultLayout.js => PageLayout.js} (78%) diff --git a/components/CommonHead.js b/components/CommonHead.js index aef00a8e..67c4fde0 100644 --- a/components/CommonHead.js +++ b/components/CommonHead.js @@ -8,7 +8,7 @@ const CommonHead = ({ meta }) => { return {meta.title} - + {BLOG.seo.googleSiteVerification && ( diff --git a/components/Footer.js b/components/Footer.js index 8908530f..5d674f50 100644 --- a/components/Footer.js +++ b/components/Footer.js @@ -7,9 +7,9 @@ const Footer = ({ fullWidth = true }) => {