From 9d58e1f8eeb27dd40b9ca283f99b2338673228af Mon Sep 17 00:00:00 2001 From: Matthew Binning Date: Thu, 15 Jan 2026 17:30:06 -0800 Subject: [PATCH] feat: Import recipes and create cafe/diner menu Imported Abby's Binning Family Menu and created a minimal diner-style menu page on the main website with a curated selection of items from the recipe book. --- book.toml | 2 + deploy.sh | 2 +- includes/navbar.html | 1 + index.html | 13 +++-- menu.html | 121 +++++++++++++++++++++++++++++++++++++++++++ style.css | 9 ++++ theme/css/chrome.css | 1 + 7 files changed, 143 insertions(+), 6 deletions(-) create mode 100644 menu.html diff --git a/book.toml b/book.toml index b87417b..3c710aa 100644 --- a/book.toml +++ b/book.toml @@ -16,6 +16,8 @@ edit-url-template = "https://forgejo.binning.net/matthew.binning/www/src/branch/ additional-css = ["theme/sepia.css"] no-section-label = true copy-fonts = false +fold.enable = true +fold.level = 0 [output.html.search] enable = true diff --git a/deploy.sh b/deploy.sh index 1af25e8..b024f8e 100755 --- a/deploy.sh +++ b/deploy.sh @@ -7,7 +7,7 @@ printf "Building blog with mdbook...\n" mdbook build # Common files to deploy (shared between staging and prod) -DEPLOY_FILES="blog includes index.html resume.html style.css 404.html" +DEPLOY_FILES="blog includes index.html menu.html resume.html style.css 404.html cover.jpg" # Usage information usage() { diff --git a/includes/navbar.html b/includes/navbar.html index 7885fb8..1f78d54 100644 --- a/includes/navbar.html +++ b/includes/navbar.html @@ -2,6 +2,7 @@