Well, that's tested on Postgres, so might have to tweak it for MySQL. Try:
select p.id as page_id, p.name, c.version, c.data
from page p
inner join content c
on p.id = c.page_id
where c.version = (select max(d.version) from content d where d.page_id = p.id)
Edit: Alternatively, you might try using views. First, we prepare a view to replace the select expression in the where clause above:
create view newest_content
as select p.id as page_id, p.name, max(c.version) as version
from page p inner join content c on p.id = c.page_id
group by p.id, p.name;
By joining the content table again, we get the associated content:
create view newest_content_data
as select p.page_id, p.name, p.version, c.data
from newest_content p inner join content c on (p.page_id = c.page_id and p.version = c.version)
And the following query will only deliver the "newest" data:
select * from newest_content_data