Skip to content

Commit

Permalink
Add Assets back and Fix Explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
VVoruganti committed Nov 15, 2023
1 parent 2f9f1e9 commit 47f1d28
Show file tree
Hide file tree
Showing 18 changed files with 16 additions and 8 deletions.
3 changes: 2 additions & 1 deletion content/Open-Sourcing Tutor-GPT.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "Open-Sourcing Tutor-GPT"
enableToc: false
enableToc: true
date: 2023-06-09
---

![[assets/human_machine_learning.jpeg]]
Expand Down
4 changes: 2 additions & 2 deletions content/Theory-Of-Mind is All You Need.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

---
title: "Theory-of-Mind Is All You Need"
enableToc: false
enableToc: true
date: 2023-06-12
---

## TL;DR
Expand Down
2 changes: 1 addition & 1 deletion content/_index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Plastic Labs 🥽
title: Welcome
enableToc: false
---

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/ToM Discord 1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/ToM Discord 2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/ToM Discord 3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/ToM Flow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/ToM meme.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/bloom_courtland.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/bloom_courtland_thoughts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/bloom_v_khan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/bloombot langchain diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/human_machine_learning.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/khan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/assets/thought.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion quartz.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: QuartzConfig = {
provider: "plausible",
},
baseUrl: "blog.plasticlabs.ai",
ignorePatterns: ["assets", "private", "templates", ".obsidian"],
ignorePatterns: ["private", "templates", ".obsidian"],
defaultDateType: "created",
theme: {
typography: {
Expand Down
13 changes: 10 additions & 3 deletions quartz.layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export const sharedPageComponents: SharedLayout = {
header: [],
footer: Component.Footer({
links: {
GitHub: "https://github.com/jackyzha0/quartz",
"Discord Community": "https://discord.gg/cRFFHYye7t",
GitHub: "https://github.com/plastic-labs/blog",
"Discord Community": "https://discord.gg/plasticlabs",
},
}),
}
Expand All @@ -26,7 +26,14 @@ export const defaultContentPageLayout: PageLayout = {
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
Component.DesktopOnly(Component.Explorer({
filterFn: (node) => {
if (node.name === "Welcome") {
return false
}
return true
}
})),
],
right: [
Component.Graph(),
Expand Down

0 comments on commit 47f1d28

Please sign in to comment.