article renders in article css; the article text is squished to the left and begins in the nav row

This commit is contained in:
chimchooree
2020-10-07 12:15:36 -05:00
parent a69c3215d7
commit a08d9c6e29
22 changed files with 16 additions and 12 deletions
+5 -2
View File
@@ -22,13 +22,16 @@ def collect_raw(d):
return glob.glob(d)
def clear_articles():
files = glob.glob('../*.tpl')
files = glob.glob('../*')
print(files)
if '../raw' in files:
files.remove('../raw')
for f in files:
os.remove(f)
def main():
clear_articles()
create_files(collect_raw('entries/*.tpl'), '..')
create_files(collect_raw('entries/*'), '..')
## Start Program ##