Skip to content

Commit

Permalink
Fix static page nagivations
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jul 25, 2024
1 parent 59a818d commit 2fd5470
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ged2site
Original file line number Diff line number Diff line change
Expand Up @@ -2112,19 +2112,19 @@ sub print_person
}
print $html "<center><h1>$title</h1>";
if(defined($me)) {
print $html '[ <a href="', make_filename_from_person(person => $me), '">Home</a> ]';
print $html '[ <a href="', make_filename_from_person(person => $me), '">Home</a> ] | ';
}
if($gedcal) {
print $html ' | [ <a href="calendar/index.html">Calendar</a> ]';
print $html ' [ <a href="calendar/index.html">Calendar</a> ] | ';
}
print $html ' | [ <a href="surnames.html">Surnames Index</a> ]';
print $html ' [ <a href="surnames.html">Surnames Index</a> ] | ';
if(-r 'static-site/censuses.html') {
print $html ' | [ <a href="censuses.html">Census Index</a> ]';
print $html ' [ <a href="censuses.html">Census Index</a> ] | ';
}
if($opts{'w'}) {
print $html ' | [ <a href="todo.html">Errors</a> ]';
print $html ' [ <a href="todo.html">Errors</a> ] | ';
}
print $html ' | [ <a href="history.html">Family History</a> ]</center><p>';
print $html ' [ <a href="history.html">Family History</a> ]</center><p>';

my $fullbio;

Expand Down

0 comments on commit 2fd5470

Please sign in to comment.