contractor-chron
No worries at all, I'm happy to help — and your questions are totally valid!
If you're using the CMS to generate multiple pages (like one per blog post), that’s called a collection page in Silex. In that case, the permalink needs to be dynamic — not hardcoded.
So instead of writing:
blog/my-first-post
you should use an expression like:
blog/{{title}}
or better:
blog/{{title}} | slugify
This way, each blog post gets its own URL like domain.com/blog/my-first-post, and you don’t accidentally apply the same path to every page.
Let me know if you're not using the CMS — the answer is different in that case!