이 글의 목적은 첫페이지에서 하나의 앱으로 연결하고 그 앱의 하부요소 2개로 이동해 보는 것이다.wagtail 시작하기는 https://blingstarhamal.tistory.com/492 를 참조 django는 하나의 프로젝트에 여러가지 앱들이 달려있는 구조인데 이는 wagtail cms 적용을해도 마찬가지다.내 프로젝트의 이름은 custom 이고, category라는 앱을 하나 만들었다.python manage.py startapp category├── Dockerfile├── category # 새로만든 앱├── custom├── db.sqlite3├── home├── manage.py├── requirements.txt└── search 기본적으로 wagtail 설치를 끝냈으면 프로젝트폴더(cu..