]> git.mxchange.org Git - friendica.git/blob - view/profile.php
acl stuff
[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 \r
23         <a id="dfrn-request-link" href="dfrn_request/<?php echo $profile['uid']; ?>">Introductions</a>\r
24 \r
25         </div>\r
26 \r
27         <?php if ( (strlen($profile['address'])) \r
28                 || (strlen($profile['locality']))\r
29                 || (strlen($profile['region'])) \r
30                 || (strlen($profile['postal-code'])) \r
31                 || (strlen($profile['country-name']))) { ?>\r
32                 <span class="location">Location:\r
33                         <div class="adr">\r
34                                 <div class="street-address"><?php if(strlen($profile['address'])) echo $profile['address']; ?></div>\r
35                                 <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
36                                 <span class="country-name"><?php echo $profile['country-name']; ?></span>\r
37                         </div>\r
38                 </div>\r
39 \r
40         <?php } ?>\r
41 \r
42         <?php if(strlen($profile['gender'])) { ?>\r
43                 <div class="mf">Gender: <span class="x-gender"><?php echo $profile['gender']; ?></span></div>\r
44 \r
45         <?php } ?>\r
46 \r
47         <?php if(strlen($profile['pubkey'])) { ?>\r
48                 <div class="key" style="display: none"><?php echo $profile['pubkey']; ?></div>\r
49         <?php } ?>\r
50 </div>\r
51 <?php } ?>\r
52 <?php if(strlen($profile['marital'])) { ?>\r
53 <div class="marital"><span class="marital-label">Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>\r
54 <?php } ?>\r
55 <?php if(strlen($profile['url'])) { ?>\r
56 <div class="homepage"><span class="homepage-label">Status: </span><span class="homepage-url"><?php echo $profile['homepage']; ?></span></div>\r
57 <?php } ?>\r
58 <?php echo $page['aside'] ?>\r
59 </aside>\r
60 <section>\r
61 <?php echo $page['content']; ?>\r
62 </section>\r
63 <footer>\r
64 <?php echo $page['footer']; ?>\r
65 </footer>\r
66 </body>\r
67 </html>\r
68 \r