Edited view/sv/profile.php via GitHub

This commit is contained in:
erik 2011-03-22 11:07:18 -07:00
parent 15ef0e601e
commit c7b671aa2d
1 changed files with 71 additions and 72 deletions

View File

@ -1,72 +1,71 @@
<!DOCTYPE html ><?php // This is a perfect example of why I prefer to use template files rather than mixed PHP/HTML ?> <!DOCTYPE html ><?php // This is a perfect example of why I prefer to use template files rather than mixed PHP/HTML ?>
<html> <html>
<head> <head>
<title><?php if(x($page,'title')) echo $page['title']; ?></title> <title><?php if(x($page,'title')) echo $page['title']; ?></title>
<?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?> <?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?>
</head> </head>
<body> <body>
<header><?php if(x($page,'header')) echo $page['header']; ?></header> <header><?php if(x($page,'header')) echo $page['header']; ?></header>
<nav><div id="top-margin"></div><?php if(x($page,'nav')) echo $page['nav']; ?></nav> <nav><div id="top-margin"></div><?php if(x($page,'nav')) echo $page['nav']; ?></nav>
<aside> <aside>
<?php if((is_array($profile)) && count($profile)) { ?> <?php if((is_array($profile)) && count($profile)) { ?>
<div class="vcard"> <div class="vcard">
<?php if(strlen($profile['name'])) { ?> <?php if(strlen($profile['name'])) { ?>
<div class="fn"><?php echo $profile['name']; ?></div> <div class="fn"><?php echo $profile['name']; ?></div>
<?php } ?> <?php } ?>
<?php if(strlen($profile['photo'])) { ?> <?php if(strlen($profile['photo'])) { ?>
<div id="profile-photo-wrapper"><img class="photo" src="<?php echo $profile['photo']; ?>" alt="<?php echo $profile['name']; ?>" /></div> <div id="profile-photo-wrapper"><img class="photo" src="<?php echo $profile['photo']; ?>" alt="<?php echo $profile['name']; ?>" /></div>
<?php } ?> <?php } ?>
<div id="profile-extra-links"> <div id="profile-extra-links">
<ul> <ul>
<?php if($profile['uid'] != $_SESSION['uid']) { ?> <?php if($profile['uid'] != $_SESSION['uid']) { ?>
<li><a id="dfrn-request-link" href="dfrn_request/<?php echo $profile['nickname']; ?>">Connect</a></li> <li><a id="dfrn-request-link" href="dfrn_request/<?php echo $profile['nickname']; ?>">Connect</a></li>
<?php } ?> <?php } ?>
</ul> </ul>
</div> </div>
<?php if ( (strlen($profile['address'])) <?php if ( (strlen($profile['address']))
|| (strlen($profile['locality'])) || (strlen($profile['locality']))
|| (strlen($profile['region'])) || (strlen($profile['region']))
|| (strlen($profile['postal-code'])) || (strlen($profile['postal-code']))
|| (strlen($profile['country-name']))) { ?> || (strlen($profile['country-name']))) { ?>
<div class="location">Location: <div class="location">Plats:
<div class="adr"> <div class="adr">
<div class="street-address"><?php if(strlen($profile['address'])) echo $profile['address']; ?></div> <div class="street-address"><?php if(strlen($profile['address'])) echo $profile['address']; ?></div>
<span class="city-state-zip"><span class="locality"><?php echo $profile['locality']; ?></span><?php if(strlen($profile['locality'])) echo ', '; ?><span class="region"><?php echo $profile['region'] ?></span><?php if(strlen($profile['postal-code'])) { ?> <span class="postal-code"><?php echo $profile['postal-code']; ?></span><?php } ?></span> <span class="city-state-zip"><span class="locality"><?php echo $profile['locality']; ?></span><?php if(strlen($profile['locality'])) echo ', '; ?><span class="region"><?php echo $profile['region'] ?></span><?php if(strlen($profile['postal-code'])) { ?> <span class="postal-code"><?php echo $profile['postal-code']; ?></span><?php } ?></span>
<span class="country-name"><?php echo $profile['country-name']; ?></span> <span class="country-name"><?php echo $profile['country-name']; ?></span>
</div> </div>
</div> </div>
<?php } ?> <?php } ?>
<?php if(strlen($profile['gender'])) { ?> <?php if(strlen($profile['gender'])) { ?>
<div class="mf">Gender: <span class="x-gender"><?php echo $profile['gender']; ?></span></div> <div class="mf">K&ouml;n: <span class="x-gender"><?php echo $profile['gender']; ?></span></div>
<?php } ?> <?php } ?>
<?php if(strlen($profile['pubkey'])) { ?> <?php if(strlen($profile['pubkey'])) { ?>
<div class="key" style="display: none;"><?php echo $profile['pubkey']; ?></div> <div class="key" style="display: none;"><?php echo $profile['pubkey']; ?></div>
<?php } ?> <?php } ?>
</div> </div>
<?php } ?> <?php } ?>
<?php if(strlen($profile['marital'])) { ?> <?php if(strlen($profile['marital'])) { ?>
<div class="marital"><span class="marital-label"><span class="heart">&hearts;</span> Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div> <div class="marital"><span class="marital-label"><span class="heart">&hearts;</span> Civilstatus: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>
<?php } ?> <?php } ?>
<?php if(strlen($profile['homepage'])) { ?> <?php if(strlen($profile['homepage'])) { ?>
<div class="homepage"><span class="homepage-label">Homepage: </span><span class="homepage-url"><?php echo linkify($profile['homepage']); ?></span></div> <div class="homepage"><span class="homepage-label">Webbplats: </span><span class="homepage-url"><?php echo linkify($profile['homepage']); ?></span></div>
<?php } ?> <?php } ?>
<?php if(x($page,'aside')) echo $page['aside'] ?> <?php if(x($page,'aside')) echo $page['aside'] ?>
</aside> </aside>
<section> <section>
<?php if(x($page,'content')) echo $page['content']; ?> <?php if(x($page,'content')) echo $page['content']; ?>
<div id="page-footer"></div> <div id="page-footer"></div>
</section> </section>
<footer> <footer>
<?php if(x($page,'footer')) echo $page['footer']; ?> <?php if(x($page,'footer')) echo $page['footer']; ?>
</footer> </footer>
</body> </body>
</html> </html>