diff --git a/src/html_index_domains.py b/src/html_index_domains.py
index f2c7cc1..309fcd9 100755
--- a/src/html_index_domains.py
+++ b/src/html_index_domains.py
@@ -119,7 +119,7 @@ def gen_stats(c_apps, c_domains, title):
Collected through {:,} recordings with {:,} individual requests.
'''.format(title, c_apps, c_domains, c_recordings, c_logs), title=title)
@@ -154,7 +154,7 @@ def process():
symlink=index_domains.fname_tracker())
# Stats
print(' Stats')
- gen_stats(app_count, dom_count, title='Statistics')
+ gen_stats(app_count, dom_count, title='Results')
print('')
diff --git a/src/html_root.py b/src/html_root.py
index 7bebd82..4364ce9 100755
--- a/src/html_root.py
+++ b/src/html_root.py
@@ -103,10 +103,14 @@ def gen_404():
def process():
print('generating root html ...')
+ print(' index.html')
gen_root() # root index.thml
+ print(' redirect.html')
gen_search() # root redirect.html?id=my.bundle.id
- gen_help()
+ print(' 404.html')
gen_404()
+ print(' /help/')
+ gen_help()
print('')
diff --git a/templates/base.html b/templates/base.html
index 689eedc..cd2c9ad 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -21,8 +21,8 @@