목록include (1)
주뇽's 저장소
2. Include, Extends, Block
include와 extends는 템플릿 시스템의 중요한 개념이다. 1. Include include는 템플릿에서 다른 템플릿 파일을 포함시키는 방법을 제공한다. 이를 통해 템플릿 파일 간의 재사용성을 높일 수 있다. 예를 들어, 같은 페이지의 여러 부분에서 동일한 HTML 코드를 사용해야 할 때 유용하다. 예시: 다음은 header.html 파일과 footer.html 파일을 page.html 파일에 포함시키는 예제이다. header.html footer.html © 2023 My Website page.html {% include "header.html" %} Welcome to My Website This is the content of the page. {% include "footer.html" ..
웹개발/Django
2023. 8. 19. 00:11