templates/template.html 생성 HEADER {% block content %} {% endblock %} FOOTER {% extends 'template.html' %} : template.html을 가져와서 해당 페이지의 템플릿으로 사용 {% %} : Django에서 파이썬 명령을 실행 {% block (블록명) %} 블록명으로 지정된 블록이 이곳에 위치 {%block title%}이라면 title이라는 이름의 블록이 이곳에 위치 templates/home.html {% extends 'template.html' %} {% block content %} This is Home Page {% endblock %} templates/stock/index.html {% extends 't..