base.html {% block content %} {% endblock %} # crud/settings.py 'DIRS': [BASE_DIR / 'crud' / 'templates'], {% extends 'base.html' %} {% block content %} Articles {% endblock %} READ 게시글 전체 조회 # articles/views.py from .models import Article def index(request): articles = Article.objects.all() context = { 'articles': articles, } return render(request, 'articles/index.html', context) {% extends 'ba..