$LJ::SITENAMESHORT } ) _code?>
remote;
my $ret = "";
$ret .= $u ? BML::ml( ".intro.hello", { user => "" . $u->display_name . "" } ) . "\n" : "";
$ret .= "
" . BML::ml( ".intro.text", { sitename => $LJ::SITENAMESHORT } ) . "
"
unless $u;
$ret .= "";
unless ($u) {
$ret .= "- " . BML::ml( ".options.login_prompt", { aopts => "href='login'" } ) . "
";
}
if ($u) {
$ret .= "- " . BML::ml( ".options.logged_in", { aopts => "href='login'" } );
$ret .= " " . $u->display_name . "
";
$ret .= "- " . BML::ml( ".options.post", { aopts => "href='post'", sitename => $LJ::SITENAMESHORT } ). "
"
unless $u->is_identity;
$ret .= "- " . BML::ml( ".options.readingpage", { aopts => "href='read'" } ) . "
";
}
return $ret;
}
_code?>