6.1添加首页和登录页静态模版

Posted andu99

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6.1添加首页和登录页静态模版相关的知识,希望对你有一定的参考价值。

把css,js和图片等放到根目录下static文件夹里。index.html和login.html放到templates文件夹里。

 

技术分享图片

 

把静态文件中的 ../ 全部替换成 /static/

修改配置文件,添加静态文件文件夹static路径:

STATIC_URL = /static/

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, static)
]

注意 STATICFILES_DIRS 是列表,不是元组。

修改urls.py,添加链接:

from django.contrib import admin
from django.urls import path
import xadmin
from django.views.generic import TemplateView

urlpatterns = [
    path(xadmin/, xadmin.site.urls),
    path(‘‘, TemplateView.as_view(template_name=index.html), name=home),
    path(login/, TemplateView.as_view(template_name=login.html), name=login),
]

修改静态页面中的链接,把login.html 换成 /login/,register.html 换成 /register/

以上是关于6.1添加首页和登录页静态模版的主要内容,如果未能解决你的问题,请参考以下文章

挑选网站模板需要考虑因素

IIS 设置默认首页静态页,无静态页,走路由

进度总结

zen-cart模版。安装好模版了。 首页也都修改好了。上传产品也好了 首页也有显示产品了。

求一个仿京东首页的静态网页,。。不用太繁琐 用html写 做3个html页面(首页/列表页/详情页)

帝国cms内容页模版修改更新后没反应