Add license footer to HTML output.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2020-10-17 03:27:36 +02:00
parent 2e0bfd98ff
commit 56b3f1901a
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 8 additions and 1 deletions

View File

@ -92,7 +92,14 @@ void write_html(ostream &out, const vector<entry_type> &entries)
out << " </details>\n";
}
out << " </body>\n</html>\n";
out << R"(
<p class="footer" style="text-align: right;">
<a href="https://schlomp.space/FediBlock">Sourcecode</a> licensed under the
<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL-3.0-only</a>.
</p>
</body>
</html>
)";
}
void copy_screenshots(const fs::path &directory)