Compare commits

...

2 Commits

Author SHA1 Message Date
Joshua Potter 79b715a64c Keep folders collapsed by default. 2024-03-24 07:17:12 -06:00
Joshua Potter a34506f98e Rename x86-64 index. 2024-03-24 07:15:33 -06:00
2 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,5 @@
---
title: Assembly
title: x86-64
TARGET DECK: Obsidian::STEM
FILE TAGS: x86-64
tags:

View File

@ -1,11 +1,15 @@
import { PageLayout, SharedLayout } from "./quartz/cfg"
import * as Component from "./quartz/components"
const Explorer = Component.Explorer({
folderDefaultState: "collapsed",
})
// components shared across all pages
export const sharedPageComponents: SharedLayout = {
head: Component.Head(),
header: [
Component.MobileOnly(Component.Explorer()),
Component.MobileOnly(Explorer),
],
footer: Component.Footer({
links: {
@ -26,7 +30,7 @@ export const defaultContentPageLayout: PageLayout = {
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.DesktopOnly(Component.Explorer()),
Component.DesktopOnly(Explorer),
],
right: [
Component.Graph(),
@ -46,7 +50,7 @@ export const defaultListPageLayout: PageLayout = {
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.DesktopOnly(Component.Explorer()),
Component.DesktopOnly(Explorer),
],
right: [],
}