in reply to Re^8: Mojolicious with Template Toolkit
in thread Mojolicious with Template Toolkit

mojo generate app hippo

generates:

.
├── hippo.yml
├── lib
│   ├── hippo
│   │   └── Controller
│   │       └── Example.pm
│   └── hippo.pm
├── public
│   └── index.html
├── script
│   └── hippo
├── t
│   └── basic.t
└── templates
    ├── example
    │   └── welcome.html.ep
    └── layouts
        └── default.html.ep

9 directories, 8 files

Tutorial explains defaults for static files, external templates and Home among others.