Help for someone coming from jekyll

Are there any tips someone can provide for people like me who are coming from jekyll.

I can figure out the templating fine, What I am having most trouble figuring out is getting urls to match those in my existing jekyll site.

What is the easiest and also still proper way to get /{year}/{month}/{day}/{slug} formatted urls for blog posts.

You can use permalinks to format the URLs. You must include the following snippet into your config.toml:

[permalinks]
post: "/:year/:month/:day/:slug"

Replace post if you have a different content type.