+
{post.summary}
{post.summary && ...}
-
+
Continue Reading
diff --git a/themes/simple/components/BlogListPage.js b/themes/simple/components/BlogListPage.js
index b86cc83f..f260da04 100644
--- a/themes/simple/components/BlogListPage.js
+++ b/themes/simple/components/BlogListPage.js
@@ -1,13 +1,11 @@
import BLOG from '@/blog.config'
-import { useGlobal } from '@/lib/global'
import { useRouter } from 'next/router'
import Link from 'next/link'
import { BlogItem } from './BlogItem'
export const BlogListPage = props => {
const { page = 1, posts, postCount } = props
- const { locale } = useGlobal()
const router = useRouter()
const totalPage = Math.ceil(postCount / BLOG.POSTS_PER_PAGE)
const currentPage = +page
@@ -28,13 +26,13 @@ export const BlogListPage = props => {
- {locale.PAGINATION.PREV}
+ className={`${showPrev ? 'text-blue-400 border-b border-blue-400 ' : 'bg-gray pointer-events-none '} text-white no-underline pb-1 px-3`}>
+ NEWER POSTS
- {locale.PAGINATION.NEXT}
+ className={`${showNext ? 'text-blue-400 border-b border-blue-400 ' : 'bg-gray pointer-events-none '} text-white no-underline pb-1 px-3`}>
+ OLDER POSTS
diff --git a/themes/simple/components/DropMenu.js b/themes/simple/components/DropMenu.js
index 2058a032..73bbc245 100644
--- a/themes/simple/components/DropMenu.js
+++ b/themes/simple/components/DropMenu.js
@@ -17,9 +17,9 @@ export const DropMenu = ({ link }) => {
{/* 子菜单 */}
- {hasSubMenu &&