From 4ad39d04d8da4fc3cbabdbc2cdad3ce6bf85fc9c Mon Sep 17 00:00:00 2001 From: venus Date: Sat, 1 Aug 2026 12:37:43 -0500 Subject: [PATCH] made a pdf printable page --- src/printable-recipes.njk | 162 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 162 insertions(+) create mode 100644 src/printable-recipes.njk diff --git a/src/printable-recipes.njk b/src/printable-recipes.njk new file mode 100644 index 0000000..66a625d --- /dev/null +++ b/src/printable-recipes.njk @@ -0,0 +1,162 @@ +--- +layout: home.njk +title: Printable Family Recipes +permalink: "/printable-recipes/" +--- + +
+

Print & Export Options

+ +
+ + + + +
+ + +
+ + +
+{% for recipe in collections.recipe | sort(attribute="data.title") %} +
+
+
+

{{ recipe.data.title | upper }}

+ {% if recipe.data.author %} +

From the kitchen of: {{ recipe.data.author }}

+ {% endif %} +
+ {% if recipe.data.image %} +
+ {{ recipe.data.title }} +
+ {% endif %} +
+
+ +
+ {{ recipe.templateContent | safe }} +
+
+{% endfor %} +
+ + + + + + + +