템플릿 상속 : 복붙 줄이기 1) 프로젝트 폴더에 templates 만들기 (app에 만든거랑 다른것이다) (settings.py in project있는 위치에!)2) templates 안에 base.html 만들기3) settings.py에 알려주기 우리가 만든 templates이니까TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': ['blogproject/templates'], 주의! 내가 만든 프로젝트의 이름 쓰기나는 week4_blog_project라고 써야해 4) base.html 여기에 컨텐츠가 올 예정입니다{% block contents %} //sidebar title 다양한걸 쓸 수..