From f396f7edd2e0c7a2492c885936f52327c7c3b12b Mon Sep 17 00:00:00 2001 From: jaanli Date: Sun, 25 Feb 2024 09:07:45 -0500 Subject: [PATCH] fix: link to source code --- observablehq.config.ts | 56 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 52 insertions(+), 4 deletions(-) diff --git a/observablehq.config.ts b/observablehq.config.ts index 16beb9c..a521006 100644 --- a/observablehq.config.ts +++ b/observablehq.config.ts @@ -1,16 +1,16 @@ // See https://observablehq.com/framework/config for documentation. export default { // The project’s title; used in the sidebar and webpage titles. - title: "American Community Survey", + title: "Visualizations", // The pages and sections in the sidebar. If you don’t specify this option, // all pages will be listed in alphabetical order. Listing pages explicitly // lets you organize them into sections and have unlisted pages. pages: [ { - name: "Examples", + name: "Variables in the Survey", pages: [ - // {name: "Dashboard", path: "/example-dashboard"}, + {name: "Income over the years", path: "/income"}, // {name: "Report", path: "/example-report"} ] } @@ -18,10 +18,58 @@ export default { // Some additional configuration options and their defaults: // theme: "default", // try "light", "dark", "slate", etc. - // header: "", // what to show in the header (HTML) // footer: "Built with Observable.", // what to show in the footer (HTML) // toc: true, // whether to show the table of contents // pager: true, // whether to show previous & next links in the footer // root: "docs", // path to the source root for preview // output: "dist", // path to the output root for build + header: ` +
+ + + + + + + +
+ + Visualizing the Census Bureau American Community Survey + + + View source + +
+
` };