remove dumb commented out WIP faker factory stuff

finally clearing out the trash huh
This commit is contained in:
Xevion
2019-12-24 00:57:27 -06:00
parent 5992b328e4
commit 551eec8580

View File

@@ -101,15 +101,6 @@ def index():
'Python Developer',
'Software Engineer',
]
# content = [{'text': fake.paragraph(nb_sentences=15),
# 'seed': random.randint(0, 1000),
# 'title': fake.word().title()}
# for _ in range(0)]
content = [{'title': 'Work in Progress',
'seed': random.randint(0, 1000),
'text': 'This portion of my website is still a work in progress. I don\'t know if and when it\'ll be done, or how it will turn out in the end. - Xevion @ (Jul-11-2019)'}
for _ in range(1)]
return render_template('index.html', content=content, job=random.choice(jobs))
@app.route('/register/', methods=['GET', 'POST'])