django基础2--django利用模板生成网页

步骤一

在应用目录下创建模板(templates)目录

编辑模板文件并保存到这个目录下

步骤二

修改应用文件夹下的views.py显示模板内容

vi index.html

<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Developer Studio">
<META HTTP-EQUIV="Content-Type" content="text/html; charset=gb_2312-80">
<TITLE>Rocky's blog</TITLE>
</HEAD>
<BODY>
<h1>hello welcome to Rocky's blog!</h1>
</BODY>
</HTML>

Vi views.py

from django.shortcuts import render_to_response
def index(req):
return render_to_response('index.html',{})

步骤三

Pythonmanage.py runserver 测试


你可能感兴趣的:(安装,django,测试)