Skip to content

Commit c245a7e

Browse files
URL Problem
1 parent 9bc6e64 commit c245a7e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: quartz/components/NavigationLinks.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ interface Options {
1111
export default ((opts?: Options) => {
1212
const NavigationLinks: QuartzComponent = (props: QuartzComponentProps) => {
1313
const links = opts?.links ?? []
14+
console.log(links)
1415
return (
1516
<nav class="nav-links">
1617
<button className="menu-btn">

Diff for: quartz/plugins/emitters/explorerwithtocPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const ExplorerWithTocPage: QuartzEmitterPlugin = (userOpts) => {
5555
async emit(ctx, _content, resources): Promise<FilePath[]> {
5656
const cfg = ctx.cfg.configuration
5757
const allFiles = _content.map((c) => c[1].data)
58-
const slug = joinSegments("blogs", "index") as FullSlug
58+
const slug = joinSegments("blogs") as FullSlug
5959
const title = "Pattern Blogs"
6060
const [tree, vfile] = defaultProcessedContent({
6161
slug,

0 commit comments

Comments
 (0)