我有一个HTML文件,它链接样式表,如下所示:
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
index.html
位于项目的根目录,因此当我打开它时,页面将按预期的格式设置。
我试图将此CSS代码复制到我的Django项目中。我将css
文件夹放置在项目根目录中。上面的html代码位于templates/base.html
中,我从项目根目录运行python manage.py runserver
。当我这样做时,格式化不起作用。我尝试了诸如href="css/bootstrap.min.css"
甚至/full/path/to/css/bootstrap.min.css
之类的方法,但是它们没有用。我还尝试了<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
确实有效。
如何正确引用Django项目文件夹中的样式表?
其他信息。
该网站上的所有图像都存储在一个AWS存储桶中。我想我记得读过一些建议也可以在其中托管静态文件的内容。这是我的settings.py
中的摘录,其中是否有可能引起冲突的内容?
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.1/howto/static-files/
STATIC_URL = '/static/'
AUTH_USER_MODEL = 'users.CustomUser'
LOGIN_REDIRECT_URL = 'home'
LOGOUT_REDIRECT_URL = 'home'
CRISPY_TEMPLATE_PACK = 'bootstrap4'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
EMAIL_HOST = 'smtp.sendgrid.com'
EMAIL_HOST_USER = 'apikey'
EMAIL_HOST_PASSWORD = 'password'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
AWS_STORAGE_BUCKET_NAME = 'lcc-media'
AWS_S3_REGION_NAME = 'eu-west-1' # e.g. us-east-2
AWS_ACCESS_KEY_ID = 'Access Key'
AWS_SECRET_ACCESS_KEY = 'Secret Key'
# Tell django-storages the domain to use to refer to static files.
AWS_S3_CUSTOM_DOMAIN = '%s.s3.amazonaws.com' % AWS_STORAGE_BUCKET_NAME
# Tell the staticfiles app to use S3Boto3 storage when writing the collected static files (when
# you run `collectstatic`).
STATICFILES_LOCATION = 'static'
STATICFILES_STORAGE = 'custom_storages.StaticStorage'
# Tell the media app to use S3Boto3 storage when writing the media files
MEDIAFILES_LOCATION = 'media'
DEFAULT_FILE_STORAGE = 'custom_storages.MediaStorage'
# To deal with this: UserWarning: The default behavior of S3Boto3Storage is insecure and will change in django-storages
# 2.0. By default files and new buckets are saved with an ACL of 'public-read' (globally publicly readable). Version 2.0
# will default to using the bucket's ACL. To opt into the new behavior set AWS_DEFAULT_ACL = None, otherwise to silence
# this warning explicitly set AWS_DEFAULT_ACL.
# "The default behavior of S3Boto3Storage is insecure and will change "
AWS_DEFAULT_ACL = None
答案 0 :(得分:1)
{%load static%} ... href =“ {%static'css / stylesheet.css'%}” (将此代码添加到main.py) 添加CSS文件之前,请使用此静态标记。 并设置一个文件夹为静态,然后将其中的css文件夹和.css文件存储在css文件夹中。尝试这个。
在最坏的情况下(尝试此操作) 如果万一不影响主html文件,则尝试仅在该主base.html文件中执行所有样式设置。并尝试是否有任何影响不受影响的变化!
答案 1 :(得分:1)
您应该在根文件夹中创建一个名为 static 的文件夹,并将CSS文件夹放入其中。
通过以下方式引用您的静态文件:
{% load static %}
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">