I not sure how to include css to my html. I have an app in my project that has it's own template folder. I want to get the sample.css into my html.
Something in the lines of <link rel="stylesheet" type="text/css" href="{% %}">
Not really sure what to put in between {% %}
structure:
/proj
/app
/templates
sample.css
sample.html
Here is my template_dirs:
TEMPLATE_DIRS = (
os.path.join(BASE_DIR,'templates'),
os.path.join(BASE_DIR,'home/templates'),
os.path.join(BASE_DIR,'gallery/templates'),
os.path.join(BASE_DIR,'contact/templates'),
os.path.join(BASE_DIR,'aboutme/templates'),
)
If any other info is required. Please let me know!
updated struture
/proj
/app
/static
/css
sample.css
/templates
sample.html