Small changes + app index has new url path

This commit is contained in:
relikd
2020-09-19 16:10:56 +02:00
parent 78ff986a67
commit b4799a8d2c
5 changed files with 7 additions and 7 deletions

View File

@@ -51,7 +51,7 @@ def gen_page(arr, base, page_id=1, total=1):
content = ''.join([gen_entry(x) for x in arr])
pagination = gen_pager(page_id, total) # if total > 1 else ''
fp.write(mylib.template_with_base('''
<h2>List of app recordings (AZ)</h2>
<h2 class="center">Apps (AZ)</h2>
<div id="app-toc" class="center no_ul_all">
{}
</div>
@@ -60,7 +60,7 @@ def gen_page(arr, base, page_id=1, total=1):
def process(per_page=60):
print('generating app-index ...')
index_dir = mylib.path_out('index', 'page')
index_dir = mylib.path_out('index', 'apps')
mylib.rm_dir(index_dir)
mylib.mkdir(index_dir)