This commit is contained in:
relikd
2020-09-25 02:56:16 +02:00
parent bd4a5f321f
commit 69b2875177
15 changed files with 340 additions and 193 deletions

View File

@@ -7,9 +7,10 @@ import lib_html as HTML
def process(per_page=60):
print('generating html: app-index ...')
title = 'Apps (AZ)'
header = HTML.h2(HTML.a_path([('Results', '/results/')], title))
p, a = HTML.write_app_pages(mylib.path_out('index', 'apps'),
mylib.appids_in_out(), title,
per_page=per_page, pre=HTML.h2(title))
per_page=per_page, pre=header)
print(' {} apps'.format(a))
print(' {} pages'.format(p))
print('')