linking custom css in flask

Solutions on MaxInterview for linking custom css in flask by the best coders in the world

showing results for - "linking custom css in flask"
Chiara
03 Aug 2016
1{% block styles %}
2{{super()}}
3<link rel="stylesheet"
4      href="{{url_for('.static', filename='mystyle.css')}}">
5{% endblock %}
6