Django/テンプレート

//myapp/bbs/views.py
from django.shortcuts import render
from django.http import HttpResponse

def index(request):
    return render(request, 'bbs/index.html')

//myapp/bbs/templates/bbs/index.html

!DOCTYPE html>
html>
    head>
        meta charset='utf-8'>
        title>bbs/title>
    /head>
    body>
        h1>bbs/h1>
    /body>
/html>


python manage.py runserver

//ブラウザ
http://localhost:8000/bbs