-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
32 lines (26 loc) · 820 Bytes
/
single.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
<?php get_header(); ?>
<div class="row">
<div class="large-12 columns">
<?php if (have_posts()):
while (have_posts()) : the_post(); ?>
<h3><?php the_title(); ?></h3>
<div class="row-space">
<?php the_content();
endwhile;
endif; ?>
</div>
</div>
<!-- <div class="large-3 columns">
<?php
if (is_single() && in_category('current-projects') ) {
dynamic_sidebar('projects');
} elseif (is_single() && in_category('faculty-experts') ) {
dynamic_sidebar('experts');
} else {
get_sidebar();
}
?>
</div>
-->
</div>
<?php get_footer(); ?>