Compare commits

..

No commits in common. '625f900578e09bdbbf95834db352ef5048322d22' and '422690a294d126f212244e5476bc0e7e99a17472' have entirely different histories.

@ -740,10 +740,11 @@ 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 = [] latest_temp2 = []
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.append(late) latest_temp2.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