diff options
-rw-r--r-- | app/__init__.py | 1 | ||||
-rw-r--r-- | app/templates/base.html | 3 | ||||
-rw-r--r-- | app/views.py | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/app/__init__.py b/app/__init__.py index 8c32ef4..7c47fd8 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -13,6 +13,7 @@ DB_NAME = 'curie' SECRET_KEY = 'Sup3r$3cretkey' app = Flask(__name__) +#app = Flask(__name__, static_url_path='static') app.config.from_object(__name__) from app import views
\ No newline at end of file diff --git a/app/templates/base.html b/app/templates/base.html index 3e43671..31f148a 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -10,6 +10,7 @@ <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicons/favicon-16x16.png') }}"> <link rel="manifest" href="{{ url_for('static', filename='favicons/site.webmanifest') }}"> <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="google-site-verification" content="qID3RHYrVE0TepLZny0JaOuh-gjiQN4afHe_sdYwjGM" /> </head> <body> <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> @@ -60,4 +61,4 @@ <!--<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>--> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script> </body> -</html>
\ No newline at end of file +</html> diff --git a/app/views.py b/app/views.py index 690c7b0..c59f31e 100644 --- a/app/views.py +++ b/app/views.py @@ -111,7 +111,7 @@ def wtform(): return render_template('wtform.html', form=myform) -@app.route('/dock', methods=['GET', 'POST']) +@app.route('/Dock', methods=['GET', 'POST']) def dock_upload(): form = curieForm() |