Skip to content

Commit

Permalink
fix: hide date display on the index page
Browse files Browse the repository at this point in the history
  • Loading branch information
yijun-lee committed Jan 15, 2025
1 parent faddb0c commit 8ad6c83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion content/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: Welcome to Cryptography SecondBrain
---
Welcome to Cryptography SecondBrain. This is a comprehensive wiki covering a wide range of cryptographic topics from basic algebra to various Privacy Enhancing Technologies (PET). For newcomers, please refer to [[How to get started]] to learn how to use this wiki for your studies.
# Welcome to Cryptography SecondBrain!
This is a comprehensive wiki covering a wide range of cryptographic topics from basic algebra to various Privacy Enhancing Technologies (PET). For newcomers, please refer to [[How to get started]] to learn how to use this wiki for your studies.

Cryptography SecondBrain is an open-source project maintained by Decipher. If you have an interest in cryptography, we encourage you to contribute and share your knowledge. For more details on how to get involved, please refer to our [[Contribution Guide]].

Expand Down
5 changes: 2 additions & 3 deletions quartz/components/renderPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,8 @@ export function renderPage(
))}
</Header>
<div class="popover-hint">
{beforeBody.map((BodyComponent) => (
<BodyComponent {...componentData} />
))}
{slug !== "index" &&
beforeBody.map((BodyComponent) => <BodyComponent {...componentData} />)}
</div>
</div>
<Content {...componentData} />
Expand Down

0 comments on commit 8ad6c83

Please sign in to comment.