diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2023-06-26 15:37:43 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2023-06-27 17:12:45 -0400 |
commit | 82d94b3ff78285afaa212d6e0a364f59c2938316 (patch) | |
tree | fb0b1d801054149419f08091ed4c31e5d559e2c2 /src/doc_reform/io_out/source_pod.d | |
parent | replace directory listing, blank index.html (diff) |
replace some instances of dir listing, index.html
Diffstat (limited to 'src/doc_reform/io_out/source_pod.d')
-rw-r--r-- | src/doc_reform/io_out/source_pod.d | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/doc_reform/io_out/source_pod.d b/src/doc_reform/io_out/source_pod.d index f61721c..23017ff 100644 --- a/src/doc_reform/io_out/source_pod.d +++ b/src/doc_reform/io_out/source_pod.d @@ -129,8 +129,14 @@ template spinePod() { } } if (!exists(pths_pod.pod_dir_() ~ "/index.html")) { + import doc_reform.io_out.html_snippet; + mixin htmlSnippet; auto f = File(pths_pod.pod_dir_() ~"/index.html", "w"); - f.writeln(""); + f.writeln(format_html_blank_page_guide_home( + "../../css/html_scroll.css", + "https://sisudoc.org", + "../../index.html", + )); } if (doc_matters.opt.action.debug_do_pod && doc_matters.opt.action.vox_gt1) { |