We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e8f20b commit 3aab5a1Copy full SHA for 3aab5a1
src/pages/blog/[page].astro
@@ -7,7 +7,7 @@ import {
7
titleToPinyin,
8
} from "../../utils/utils";
9
import BlogLayout from "../../layouts/BlogLayout.astro";
10
-import OnThisPage from "../../components/OnThisPage.astro";
+import OnThisPages from "../../components/OnThisPages.astro";
11
12
export const getStaticPaths = async () => {
13
const blogs = await getCollectionOrderByDate("blog", ({ data }) => {
@@ -65,7 +65,7 @@ const readTimeMin = Math.ceil(fontNum / MIN_READ_COUNT);
65
<Content />
66
</Prose>
67
</article>
68
- <OnThisPage headings={articleHeadings} />
+ <OnThisPages headings={articleHeadings} />
69
<script
70
src="https://giscus.app/client.js"
71
data-repo="LingLambda/linglambda.github.io"
0 commit comments