refactor: rename feed to example
This commit is contained in:
parent
7c9e70336a
commit
b8b8c91cd5
2 changed files with 3 additions and 3 deletions
|
@ -12,6 +12,6 @@ def show(page):
|
||||||
except TemplateNotFound:
|
except TemplateNotFound:
|
||||||
return send_from_directory('dist', '404.html'), 404
|
return send_from_directory('dist', '404.html'), 404
|
||||||
|
|
||||||
@partials.route('feed')
|
@partials.route('example')
|
||||||
def feed():
|
def example():
|
||||||
return render_template(f'feed.html', date=datetime.now().strftime('%B %d, %Y'))
|
return render_template(f'example.html', date=datetime.now().strftime('%B %d, %Y'))
|
||||||
|
|
Loading…
Reference in a new issue