Line | |
---|
1 | <?php get_header(); ?>
|
---|
2 |
|
---|
3 | <div class="fbnarrowcolumn narrowcolumn">
|
---|
4 |
|
---|
5 | <h2><?php _e('User profile', 'fbconnect') ?></h2>
|
---|
6 |
|
---|
7 | <?php
|
---|
8 | if(file_exists (TEMPLATEPATH.'/userprofile.php')){
|
---|
9 | include( TEMPLATEPATH.'/userprofile.php');
|
---|
10 | }else{
|
---|
11 | include( FBCONNECT_PLUGIN_PATH.'/userprofile.php');
|
---|
12 | }
|
---|
13 |
|
---|
14 | ?>
|
---|
15 |
|
---|
16 | <div style="width:100%;clear:both;"> </div>
|
---|
17 | <h2><?php _e('User comments', 'fbconnect') ?></h2>
|
---|
18 | <?php
|
---|
19 | if(file_exists (TEMPLATEPATH.'/usercomments.php')){
|
---|
20 | include( TEMPLATEPATH.'/usercomments.php');
|
---|
21 | }else{
|
---|
22 | include( FBCONNECT_PLUGIN_PATH.'/usercomments.php');
|
---|
23 | }
|
---|
24 | ?>
|
---|
25 |
|
---|
26 | </div>
|
---|
27 |
|
---|
28 |
|
---|
29 | <?php get_footer(); ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.