I have a static front page and a blog page.
The blog page uses the title of the latest post as the page title (wrapped in <h1> tags) but I would like it just to say "Blog".
I have copied blog.php over to custom_blog.php and set it as the page template.
I then changed
<h1 class="page-title"><?php the_title(); ?></h1>
to
<h1 class="page-title">Blog</h1>
in custom_blog.php and refreshed the page but there is no change.
Where am I going wrong?