Compare commits
2 Commits
fc2c614e81
...
79b715a64c
Author | SHA1 | Date |
---|---|---|
Joshua Potter | 79b715a64c | |
Joshua Potter | a34506f98e |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: Assembly
|
||||
title: x86-64
|
||||
TARGET DECK: Obsidian::STEM
|
||||
FILE TAGS: x86-64
|
||||
tags:
|
||||
|
|
|
@ -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: [],
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue