2010-07-02 01:48:07 +02:00
|
|
|
<!DOCTYPE html ><?php // This is a perfect example of why I prefer to use template files rather than mixed PHP/HTML ?>
|
|
|
|
<html>
|
|
|
|
<head>
|
2010-11-01 00:38:22 +01:00
|
|
|
<title><?php if(x($page,'title')) echo $page['title']; ?></title>
|
|
|
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?>
|
2010-07-02 01:48:07 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2010-11-01 00:38:22 +01:00
|
|
|
<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>
|
2010-07-02 01:48:07 +02:00
|
|
|
<aside>
|
|
|
|
<?php if((is_array($profile)) && count($profile)) { ?>
|
|
|
|
<div class="vcard">
|
|
|
|
<?php if(strlen($profile['name'])) { ?>
|
|
|
|
<div class="fn"><?php echo $profile['name']; ?></div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php if(strlen($profile['photo'])) { ?>
|
|
|
|
<div id="profile-photo-wrapper"><img class="photo" src="<?php echo $profile['photo']; ?>" alt="<?php echo $profile['name']; ?>" /></div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<div id="profile-extra-links">
|
2010-07-29 03:24:07 +02:00
|
|
|
<ul>
|
2010-08-28 02:25:52 +02:00
|
|
|
<?php if($profile['uid'] != $_SESSION['uid']) { ?>
|
2010-09-20 05:52:39 +02:00
|
|
|
<li><a id="dfrn-request-link" href="dfrn_request/<?php echo $profile['nickname']; ?>">Connect</a></li>
|
2010-08-28 02:25:52 +02:00
|
|
|
<?php } ?>
|
2010-07-29 03:24:07 +02:00
|
|
|
</ul>
|
2010-07-09 05:25:05 +02:00
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if ( (strlen($profile['address']))
|
|
|
|
|| (strlen($profile['locality']))
|
|
|
|
|| (strlen($profile['region']))
|
|
|
|
|| (strlen($profile['postal-code']))
|
|
|
|
|| (strlen($profile['country-name']))) { ?>
|
2010-07-19 14:24:22 +02:00
|
|
|
<div class="location">Location:
|
2010-07-02 01:48:07 +02:00
|
|
|
<div class="adr">
|
|
|
|
<div class="street-address"><?php if(strlen($profile['address'])) echo $profile['address']; ?></div>
|
2010-07-11 02:11:43 +02:00
|
|
|
<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>
|
2010-07-02 01:48:07 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php if(strlen($profile['gender'])) { ?>
|
|
|
|
<div class="mf">Gender: <span class="x-gender"><?php echo $profile['gender']; ?></span></div>
|
|
|
|
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php if(strlen($profile['pubkey'])) { ?>
|
2010-12-08 03:13:51 +01:00
|
|
|
<div class="key" style="display: none;"><?php echo $profile['pubkey']; ?></div>
|
2010-07-02 01:48:07 +02:00
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
<?php if(strlen($profile['marital'])) { ?>
|
2010-08-07 02:02:05 +02:00
|
|
|
<div class="marital"><span class="marital-label"><span class="heart">♥</span> Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>
|
2010-07-02 01:48:07 +02:00
|
|
|
<?php } ?>
|
2010-11-01 00:38:22 +01:00
|
|
|
<?php if(strlen($profile['homepage'])) { ?>
|
2010-12-02 06:13:09 +01:00
|
|
|
<div class="homepage"><span class="homepage-label">Homepage: </span><span class="homepage-url"><?php echo linkify($profile['homepage']); ?></span></div>
|
2010-07-02 01:48:07 +02:00
|
|
|
<?php } ?>
|
2010-11-01 00:38:22 +01:00
|
|
|
<?php if(x($page,'aside')) echo $page['aside'] ?>
|
2010-07-02 01:48:07 +02:00
|
|
|
</aside>
|
|
|
|
<section>
|
2010-11-01 00:38:22 +01:00
|
|
|
<?php if(x($page,'content')) echo $page['content']; ?>
|
2010-09-18 00:49:57 +02:00
|
|
|
<div id="page-footer"></div>
|
2010-07-02 01:48:07 +02:00
|
|
|
</section>
|
|
|
|
<footer>
|
2010-11-01 00:38:22 +01:00
|
|
|
<?php if(x($page,'footer')) echo $page['footer']; ?>
|
2010-07-02 01:48:07 +02:00
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|