我的网站模板与左侧对齐
My website template is aligned to the left side
我的代码超出了字数限制,所以 you can see the code here.
这是我的模板,当我 运行 本地服务器时,网页有点像 this. But in fact, it should look like this. 一样向左侧倾斜。我将 settings.py 中的静态目录设置为 STATIC_DIRS = (os.path.join(BASE_DIR, "static"),)
,然后将静态目录加载到页面顶部,如图所示。想不通问题。
问题是我给变量名的方式:
# settings.py
# this
STATIC_DIRS = (os.path.join(BASE_DIR, "static"),)
# should be this
STATICFILES_DIRS = (os.path.join(BASE_DIR, "static"),)
问题解决了。
我的代码超出了字数限制,所以 you can see the code here.
这是我的模板,当我 运行 本地服务器时,网页有点像 this. But in fact, it should look like this. 一样向左侧倾斜。我将 settings.py 中的静态目录设置为 STATIC_DIRS = (os.path.join(BASE_DIR, "static"),)
,然后将静态目录加载到页面顶部,如图所示。想不通问题。
问题是我给变量名的方式:
# settings.py
# this
STATIC_DIRS = (os.path.join(BASE_DIR, "static"),)
# should be this
STATICFILES_DIRS = (os.path.join(BASE_DIR, "static"),)
问题解决了。