refactor: rename feed to example

This commit is contained in:
Ayo Ayco 2024-04-11 17:53:31 +02:00
parent 7c9e70336a
commit b8b8c91cd5
2 changed files with 3 additions and 3 deletions

View file

@ -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'))