diff --git a/app/app.py b/app/app.py index d05a175..2fc3fe2 100644 --- a/app/app.py +++ b/app/app.py @@ -184,7 +184,7 @@ def random_quote(): @app.route('/robots.txt', methods=['GET']) def get_robots(): - return send_file('templates/robots.txt') + return send_file('static/robots.txt') @app.route('/quotes.html', methods=['GET']) diff --git a/app/templates/robots.txt b/app/static/robots.txt similarity index 100% rename from app/templates/robots.txt rename to app/static/robots.txt