Here is my directory hierarchy
flaskApp
|_ flaskApp.py
|_static
| |_realsurfstyle.css
|
|_templates
|_Realsurfhtml.html
Here is the relevant render_template
from the flaskApp.py file
@app.route('/<surfBreak>')
def waveHeight(surfBreak):
return render_template("Realsurfhtml.html", name=surfBreak)
Here is my code from the html file
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='static/realsurfstyle.css')}}"/>
I dont see what im missing?