Blog shows pages but not posts

I’m using this theme:

When I go to the home page it shows a list of pages and there is no link to take you to a list of posts which effectively means you can’t view any blog posts.

If I go to /posts/ then it shows the list of posts correctly so I’m wondering what I should do to show a link to both /posts/ and /pages/ in the theme on all pages so that people can click on a link to them where ever they are.

If you need any more information then please let me know.

Add some menu entries to your site configuration. Something like:

[[menus.main]]
name = 'Home'
pageRef = '/'
weight = 10

[[menus.main]]
name = 'Posts'
pageRef = '/posts'
weight = 20

[[menus.main]]
name = 'Pages'
pageRef = '/pages'
weight = 30