You might think to actually output a page title, on an included file on such page. In order to overcome this problem, a simple JavaScript snippet will do!
The requirements are
Once you understand the requirements, now head to any file of your choice. That file should be meant to be included on a regular page. For example, the _header and _footer file. But don't worry! You can always output the page title anywhere if you are looking forward not to put it in the footer and header file!
Modify this raw Javascript as per to your choice:
<script type="text/javascript"> var title = document.getElementsByTagName("title")[0].innerHTML; document.write(title); </script>
Or for a clearer preview
<p> <b> <script type="text/javascript"> var title = document.getElementsByTagName("title")[0].innerHTML; document.wrtie(title); </script> </b> </p>
Yes that should do the trick!