arhivach-downloader

Download arhivach.vc threads
git clone https://git.ea.contact/arhivach-downloader
Log | Files | Refs | README

commit ec8b1a13e4a90e0b25cc6a85a563146933380e38
parent f0b2401e13487a7382c1bb1e531f1e389afab516
Author: egor-achkasov <eaachkasov@gmail.com>
Date:   Thu, 26 Feb 2026 15:40:46 +0000

Move template.html to export/html

Diffstat:
Msrc/export/html/mod.rs | 2+-
Rtemplate.html -> src/export/html/template.html | 0
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/export/html/mod.rs b/src/export/html/mod.rs @@ -4,7 +4,7 @@ use super::Export; mod render; -const TEMPLATE: &str = include_str!("../../../template.html"); +const TEMPLATE: &str = include_str!("template.html"); pub struct HtmlExporter; diff --git a/template.html b/src/export/html/template.html