5cel
5cel

Reputation: 62

Bolt CMS Static html page gets 404

recently i have started to use Bolt CMS. i have made a theme with Angular JS but i wanted to use some static pages. as they mentioned in their Doc https://docs.bolt.cm/3.0/templates/templates-routes#automatic-template-selection i have added my link to routing.yml

Example:

oldpages:
  path:           /applications/forms/chakka/ng/templates/core.html
  defaults:       { _controller: 'Bolt\Controllers\Frontend::record', 'contenttypeslug': 'page' }
  requirements:
    slug:       '[a-z0-9-_]+'

but i get an

Exception --> Symfony \ Component \ HttpKernel \ Exception \ HttpException

Page page/ not found.

I am really new to bolt CMS. anyone knows why ?

Thanks in advance !

Upvotes: 2

Views: 439

Answers (1)

Phillipp
Phillipp

Reputation: 1445

I think what you want is the template binding:

templatebinding:
    path: /mytemplate
    defaults: { _controller: 'Bolt\Controllers\Frontend::template', template: 'mytemplate' }

Upvotes: 1

Related Questions