diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2023-06-26 20:21:33 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2023-06-27 17:12:48 -0400 |
commit | 1ff7f2970b85accb417af0ea5dd350e0ae746dc6 (patch) | |
tree | 40f66349f5993d373bd77f19042a8782b4f6bcdf /src/doc_reform/io_out/odt.d | |
parent | html links and metadata, fixes & cosmetic work (diff) |
"empty page" index.html, sort homepage link
Diffstat (limited to 'src/doc_reform/io_out/odt.d')
-rw-r--r-- | src/doc_reform/io_out/odt.d | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/doc_reform/io_out/odt.d b/src/doc_reform/io_out/odt.d index f4a5c49..a573966 100644 --- a/src/doc_reform/io_out/odt.d +++ b/src/doc_reform/io_out/odt.d @@ -2110,7 +2110,9 @@ template outputODT() { auto f = File(pth_odt.base_pth ~"/index.html", "w"); f.writeln(format_html_blank_page_guide_home( "../../css/html_scroll.css", - "https://sisudoc.org", + (doc_matters.opt.action.webserver_url_doc_root.length > 0) + ? doc_matters.opt.action.webserver_url_doc_root + : doc_matters.conf_make_meta.conf.w_srv_data_root_url, "../../index.html", )); } |