首页 > 代码库 > django 应用本地bootstrap

django 应用本地bootstrap


django 应用本地bootstrap


一.django 应用本地bootstrap
   1.先下载bootstrap包,解压放在statics目录下
   
   
   2.把css,js,以及fonts 放在统计目录下,也就是:
       statics/css
       statics/js
       statics/font
     技术分享  
       

   


  3.在settings.py 文件最后加上下面内容

   
       STATIC_URL = ‘/static/‘
       STATICFILES_DIRS = [
           os.path.join(BASE_DIR, ‘statics‘),
       ]




   4.在html文件中应用
       <link href="http://www.mamicode.com/static/css/bootstrap.css" rel="stylesheet">
       <!-- Custom styles for this template -->
       <link href="http://www.mamicode.com/static/css/dashboard.css" rel="stylesheet">
       <script src="http://www.mamicode.com/static/js/jquery.js"></script>
       <script src="http://www.mamicode.com/static/js/bootstrap.js"></script>



本文出自 “奋斗吧” 博客,请务必保留此出处http://lvnian.blog.51cto.com/7155281/1856932

django 应用本地bootstrap