forked from hakkens/davehakkens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buddypress.php
59 lines (42 loc) · 1.4 KB
/
buddypress.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
get_header();
get_template_part( 'navbar' );
?>
<div id="submenu">
<a href="https://davehakkens.nl/community/dashboard"><div id="menuitems" class="menuitemnews">activity</div></a>
<a href="https://davehakkens.nl/community/forums"><div id="menuitems" class="menuitemforums">forums</div></a>
<a href="https://davehakkens.nl/community/members"><div id="menuitems" class="menuitemarmy">army</div></a>
<a href="https://davehakkens.nl/community/help-out"><div id="menuitems" class="menuitemhelp">help</div></a>
<a href="https://davehakkens.nl/community/army"><div id="menuitems" class="menuitemjoinus">join us</div></a>
</div>
<div id="topbar">
<?php
if( function_exists( 'yoast_breadcrumb' ) ) {
yoast_breadcrumb( '<p id="breadcrumbs">','</p>' );
}
?>
</div>
<div id="content">
<div class="post">
<?php
if( have_posts() ) : while ( have_posts() ) : the_post();
$post_meta = get_post_meta( $post->ID );
?>
<h1><?php the_title(); ?></h1>
<div class="post-content">
<?php the_content(); ?>
</div>
<div class="post-comments">
<?php comments_template(); ?>
</div>
<?php endwhile; endif; ?>
</div>
<div class="alt-forum-sidebar">
<div class="sidebar-banner"> </div>
<?php dynamic_sidebar( 'forum-sidebar' ); ?>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>