Page Title Not Working

just installed middleman via the docs and loaded the demo page and the title is not showng up properly

<title><%= current_page.data.title || "Middleman App" %></title>
---
title: Welcome to Middleman!
---

But the browser only renders

“Welcome to Middleman” and not

“Welcome to Middleman - Middleman App”

any ideas?

Change:

<title><%= current_page.data.title || "Middleman App" %></title>

to

<title><%= current_page.data.title %> - Middleman App</title>

Ok thanks however this is how it goes when you install middleman so maybe this needs fixing