Compare commits

..

2 Commits

@ -740,11 +740,10 @@ def stories2(page):
snippets = list_snippets(gather_and_sort(loc), loc) snippets = list_snippets(gather_and_sort(loc), loc)
latest_temp1 = list_headlines(gather_and_sort(loc), loc) latest_temp1 = list_headlines(gather_and_sort(loc), loc)
latest_temp2 = [] latest = []
for late in latest_temp1: for late in latest_temp1:
if "chapter" not in late[1].lower(): if "chapter" not in late[1].lower():
latest_temp2.append(late) latest.append(late)
latest = latest_temp2#[0:5]
tags = fill_word_cloud(curate_files(gather_files(loc)), loc) tags = fill_word_cloud(curate_files(gather_files(loc)), loc)
total = len(curate_files(gather_files(loc))) total = len(curate_files(gather_files(loc)))

Loading…
Cancel
Save