I want to serve blog posts without the BLOG_NAME-ID part of the URL.
For example right now my blog posts have the following URL:
example.com/blog/NAME-1/post-slug
I want to remove the NAME-1 part of the URL. It's totally unnecessary for me as I don't need multiple blogs.
So I guess I have to somehow override the WebsiteBlog.blog_post() method and use another @http.route decoration? Can you please point me to what's the correct way of doing this?