I have two CSS files in my flask applications, main.css file, and profile-pic.css file. I want to apply main.css to every HTML file in the application and profile-pic.css to profile.html only. How can I achieve this in flask?
This is my flask structure:
flask
static
main.css
profile-pic.css
templetes
profile-pic.html
account.html
....
{% extends 'base.html' %}?