From 5180c1c30d5df6c224c56c398471f955b8af63c2 Mon Sep 17 00:00:00 2001 From: Matthew Ryan Dillon Date: Wed, 26 Mar 2025 12:09:50 -0400 Subject: [PATCH] adding date header --- Dockerfile | 2 +- template.html | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dfca61e..96be2f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN for md_file in /app/markdown/*.md; do \ filename=$(basename -- "$md_file"); \ name="${filename%.*}"; \ echo "Converting $filename to $name.html"; \ - pandoc "$md_file" -o "/usr/share/nginx/html/$name.html" \ + pandoc "$md_file" --variable date="$(date +"%Y-%m-%dT%H:%M:%S%z")" -o "/usr/share/nginx/html/$name.html" \ --template=/app/markdown/template.html \ --standalone; \ fi; \ diff --git a/template.html b/template.html index b5fe862..a867e13 100644 --- a/template.html +++ b/template.html @@ -3,6 +3,7 @@ + thermokar.st