summaryrefslogtreecommitdiffstats
path: root/src/pages/blog/index.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-16 19:30:32 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-16 19:30:32 +0100
commita8e8fc73498e85c0cc1692b7330aeb3567f4a1e6 (patch)
tree02e92ea4d892c1128930327bc56c5123009bb365 /src/pages/blog/index.tsx
parent9a81ce60575403d5d3fc489f9b51d85e7108344b (diff)
chore: display year between blog posts
Diffstat (limited to 'src/pages/blog/index.tsx')
-rw-r--r--src/pages/blog/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/blog/index.tsx b/src/pages/blog/index.tsx
index 083ad97..1c3a5d9 100644
--- a/src/pages/blog/index.tsx
+++ b/src/pages/blog/index.tsx
@@ -21,7 +21,7 @@ const Blog: NextPageWithLayout<BlogPageProps> = ({ fallback }) => {
</Head>
<h1>{t`Blog`}</h1>
<SWRConfig value={{ fallback }}>
- <PostsList titleLevel={2} />
+ <PostsList showYears={true} />
</SWRConfig>
</>
);