### テンプレート側
/hello/templates/hello/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{title}}</title>
</head>
<body>
<h1>{{title}}</h1>
<p>{{msg}}</p>
</body>
</html>
### views.pyの修正
/hello/views.py
def index(request):
params = {
'title':'Hello/Index',
'msg':'this is sample page.',
}
return render(request, 'hello/index.html', params)
paramsはkeyとvalueのdictionary
