Commit de77bc54 authored by Fred Drake's avatar Fred Drake

For the title page, insert the package version number before the date.

This makes the title area more like the title are of the top-level
index, and puts the information more people are interested in first.
parent 3277da0f
......@@ -1278,11 +1278,11 @@ sub make_my_titlepage() {
$the_title .= "\n<p><i>$t_affil</i></p>";
}
if ($t_date) {
$the_title .= "\n<p><strong>$t_date</strong>";
$the_title .= "\n<p>";
if ($PACKAGE_VERSION) {
$the_title .= "<br><strong>Release $PACKAGE_VERSION</strong>";
$the_title .= "<strong>Release $PACKAGE_VERSION</strong><br>\n";
}
$the_title .= "</p>"
$the_title .= "<strong>$t_date</strong></p>"
}
if ($t_address) {
$the_title .= "\n<p>$t_address</p>";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment