equal
deleted
inserted
replaced
|
1 <div id="tabbed-container"> |
|
2 |
|
3 <div id="myTabs" class="mootabs"> |
|
4 <ul class="mootabs_title"> |
|
5 <li title="Popular">Popular</li> |
|
6 <li title="RecentComments">Recent Comments</li> |
|
7 <li title="Tags">Tags</li> |
|
8 </ul> |
|
9 |
|
10 <div id="Popular" class="mootabs_panel"> |
|
11 <ul> |
|
12 <?php echo popularPosts(10); ?> |
|
13 </ul> |
|
14 </div><!--popular--> |
|
15 |
|
16 <div id="RecentComments" class="mootabs_panel"> |
|
17 |
|
18 <?php my_rec_comments(7); ?> |
|
19 |
|
20 </div> |
|
21 <div id="Tags" class="mootabs_panel"> |
|
22 |
|
23 <?php wp_tag_cloud(); ?> |
|
24 </div> |
|
25 </div> |
|
26 </div><!--tabbed-container--> |