美文网首页
4-1homework

4-1homework

作者: OldSix1987 | 来源:发表于2016-08-21 21:33 被阅读14次

    结果


    Result.png Structure.png

    总结


    1. templates中加入index.html

    2. app中的view.py中,加入index的网页请求方法:

    def index(request):
        return render(request,'index.html')
    
    render_defination.png

    3. site中的urls.py中,加入index的网页的url链接:

    from django.conf.urls import url
    from django.contrib import admin
    from personsite.views import index
    
    urlpatterns = [
        url(r'^admin/', admin.site.urls),
        url(r'^index/', index)
    ]
    

    4. 加入静态static目录,加入css和image资源:

    static_path.png

    5. site中的settings中,加入static的路径:

    STATIC_URL = '/static/'
    STATICFILES_DIRS = (os.path.join(BASE_DIR,'static'),)
    

    6. 模板语言编辑index的路径:

    (1)引入static头文件

    {% load static %}
    

    (2)修改资源路径

    {% static 'src_path' %}
    
    <link rel="stylesheet" href="{% static 'css/layouts/blog.css' %}">
    
    <img class="post-avatar" alt="Reid Burke&#x27;s avatar" height="48" width="48" src="{% static 'img/common/reid-avatar.png' %}">
    

    相关文章

      网友评论

          本文标题:4-1homework

          本文链接:https://www.haomeiwen.com/subject/rajwsttx.html