I want to display the last_modified date on the page

I want to display the last_modified date on the page, but when I place in my template, I don’t get anything.

{{ page.last_modified }}

or

{{ last_modified }}
---

it’s:

{{ page.lastModified() }}

Thanks for the pointer. I was able to accomplish this in my theme, but doing the following:

    {{ page.modified()|date("m/d/Y") }}
---