]> git.mxchange.org Git - friendica.git/blob - view/profile.php
more post branch bug fixes
[friendica.git] / view / profile.php
1 <!DOCTYPE html ><?php // This is a perfect example of why I prefer to use template files rather than mixed PHP/HTML ?>\r
2 <html>\r
3 <head>\r
4   <title><?php echo $page['title']; ?></title>\r
5   <?php echo $page['htmlhead']; ?>\r
6 </head>\r
7 <body>\r
8 <header><?php echo $page['header']; ?></header>\r
9 <nav><?php echo $page['nav']; ?></nav>\r
10 <aside>\r
11 <?php if((is_array($profile)) && count($profile)) { ?>\r
12 <div class="vcard">\r
13         <?php if(strlen($profile['name'])) { ?>\r
14                 <div class="fn"><?php echo $profile['name']; ?></div>\r
15         <?php } ?>\r
16 \r
17         <?php if(strlen($profile['photo'])) { ?>\r
18                 <div id="profile-photo-wrapper"><img class="photo" src="<?php echo $profile['photo']; ?>" alt="<?php echo $profile['name']; ?>" /></div>\r
19         <?php } ?>\r
20 \r
21         <div id="profile-extra-links">\r
22         <ul>\r
23         <li><a id="dfrn-request-link" href="dfrn_request/<?php echo $profile['nickname']; ?>">Introductions</a></li>\r
24         <?php if(! $profile['hide-friends']) echo '<li><a id="viewcontacts-link" href="viewcontacts/' . $profile['nickname'] . '">View Contacts</a></li>'; ?>\r
25 \r
26         </ul>\r
27 \r
28         </div>\r
29 \r
30         <?php if ( (strlen($profile['address'])) \r
31                 || (strlen($profile['locality']))\r
32                 || (strlen($profile['region'])) \r
33                 || (strlen($profile['postal-code'])) \r
34                 || (strlen($profile['country-name']))) { ?>\r
35                 <div class="location">Location:\r
36                         <div class="adr">\r
37                                 <div class="street-address"><?php if(strlen($profile['address'])) echo $profile['address']; ?></div>\r
38                                 <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>\r
39                                 <span class="country-name"><?php echo $profile['country-name']; ?></span>\r
40                         </div>\r
41                 </div>\r
42 \r
43         <?php } ?>\r
44 \r
45         <?php if(strlen($profile['gender'])) { ?>\r
46                 <div class="mf">Gender: <span class="x-gender"><?php echo $profile['gender']; ?></span></div>\r
47 \r
48         <?php } ?>\r
49 \r
50         <?php if(strlen($profile['pubkey'])) { ?>\r
51                 <div class="key" style="display: none"><?php echo $profile['pubkey']; ?></div>\r
52         <?php } ?>\r
53 </div>\r
54 <?php } ?>\r
55 <?php if(strlen($profile['marital'])) { ?>\r
56 <div class="marital"><span class="marital-label"><span class="heart">&hearts;</span> Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>\r
57 <?php } ?>\r
58 <?php if(strlen($profile['url'])) { ?>\r
59 <div class="homepage"><span class="homepage-label">Homepage: </span><span class="homepage-url"><?php echo $profile['homepage']; ?></span></div>\r
60 <?php } ?>\r
61 <?php echo $page['aside'] ?>\r
62 </aside>\r
63 <section>\r
64 <?php echo $page['content']; ?>\r
65 </section>\r
66 <footer>\r
67 <?php echo $page['footer']; ?>\r
68 </footer>\r
69 </body>\r
70 </html>\r
71 \r