From 56b3f1901aebc541de12dfe767ce6675c32bcfab Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 17 Oct 2020 03:27:36 +0200 Subject: [PATCH] Add license footer to HTML output. --- src/generators/html.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/generators/html.cpp b/src/generators/html.cpp index 287887d..863ef7f 100644 --- a/src/generators/html.cpp +++ b/src/generators/html.cpp @@ -92,7 +92,14 @@ void write_html(ostream &out, const vector &entries) out << " \n"; } - out << " \n\n"; + out << R"( + + + +)"; } void copy_screenshots(const fs::path &directory)