0

我真的迷失了如何在我的 html 模板中链接到外部 .css 文件。我已阅读(或至少尝试阅读)此https://docs.djangoproject.com/en/dev/howto/static-files/并且仍然迷路。我的 .html 文件在

C:\Users\me\Documents\mysite\templates

我的 .css 文件在

C:\Users\me\Documents\mysite\templates\static\css

在settings.py中,我做了

STATIC_ROOT = 'C:/Users/me/Documents/mysite/templates/static'
STATIC_URL = '/static/'

在我的 .html 文件中,我试图通过这样做来链接 CSS

<link href="{{ STATIC_URL }}css/style.css" rel="stylesheet" type="text/css" />

知道我错过了什么或我做错了什么吗?

4

1 回答 1

0

static文件夹必须位于与文件myapp夹相同级别的templates文件夹中,并且views.py

于 2013-07-22T02:41:25.570 回答